views.view.content.yml 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606
  1. uuid: db0c124c-a260-4158-91e8-53b81d62a143
  2. langcode: fr
  3. status: true
  4. dependencies:
  5. config:
  6. - field.storage.node.field_actif
  7. - field.storage.node.field_collections
  8. - field.storage.node.field_comparatifs_associes
  9. - field.storage.node.field_dates_actu
  10. - field.storage.node.field_diaporama
  11. - field.storage.node.field_evenements_lies
  12. - field.storage.node.field_image
  13. - field.storage.node.field_memo
  14. - field.storage.node.field_partenaires
  15. - field.storage.node.field_poid
  16. - field.storage.node.field_programme
  17. - field.storage.node.field_projet
  18. - field.storage.node.field_projets_lies
  19. - field.storage.node.field_ressources_liees
  20. - field.storage.node.field_sous_titre
  21. - field.storage.node.field_theme
  22. - field.storage.node.field_themes_lies
  23. - field.storage.node.field_type_de_projet
  24. - field.storage.node.field_type_de_ressource
  25. - field.storage.node.field_type_de_theme
  26. - field.storage.node.field_ville
  27. - image.style.thumbnail
  28. - node.type.actualite
  29. - node.type.evenement
  30. - node.type.iframe
  31. - node.type.programme
  32. - node.type.projet
  33. - node.type.ressource
  34. - node.type.static
  35. - node.type.theme
  36. - taxonomy.vocabulary.types_de_theme
  37. - taxonomy.vocabulary.villes
  38. module:
  39. - entity_reference_revisions
  40. - image
  41. - node
  42. - options
  43. - smart_date
  44. - taxonomy
  45. - user
  46. _core:
  47. default_config_hash: P7F4DFe8BL31DRVqsvS-ix9KZZqvvaPjZ7zEvGo9yNM
  48. id: content
  49. label: Content
  50. module: node
  51. description: 'Trouver et gérer le contenu.'
  52. tag: default
  53. base_table: node_field_data
  54. base_field: nid
  55. display:
  56. default:
  57. id: default
  58. display_title: Master
  59. display_plugin: default
  60. position: 0
  61. display_options:
  62. title: Content
  63. fields:
  64. node_bulk_form:
  65. id: node_bulk_form
  66. table: node
  67. field: node_bulk_form
  68. entity_type: node
  69. plugin_id: node_bulk_form
  70. label: ''
  71. exclude: false
  72. alter:
  73. alter_text: false
  74. element_class: ''
  75. element_default_classes: true
  76. empty: ''
  77. hide_empty: false
  78. empty_zero: false
  79. hide_alter_empty: true
  80. field_diaporama:
  81. id: field_diaporama
  82. table: node__field_diaporama
  83. field: field_diaporama
  84. relationship: none
  85. group_type: group
  86. admin_label: ''
  87. plugin_id: field
  88. label: Diaporama
  89. exclude: false
  90. alter:
  91. alter_text: false
  92. text: ''
  93. make_link: false
  94. path: ''
  95. absolute: false
  96. external: false
  97. replace_spaces: false
  98. path_case: none
  99. trim_whitespace: false
  100. alt: ''
  101. rel: ''
  102. link_class: ''
  103. prefix: ''
  104. suffix: ''
  105. target: ''
  106. nl2br: false
  107. max_length: 0
  108. word_boundary: true
  109. ellipsis: true
  110. more_link: false
  111. more_link_text: ''
  112. more_link_path: ''
  113. strip_tags: false
  114. trim: false
  115. preserve_tags: ''
  116. html: false
  117. element_type: ''
  118. element_class: ''
  119. element_label_type: ''
  120. element_label_class: ''
  121. element_label_colon: true
  122. element_wrapper_type: ''
  123. element_wrapper_class: ''
  124. element_default_classes: true
  125. empty: ''
  126. hide_empty: false
  127. empty_zero: false
  128. hide_alter_empty: true
  129. click_sort_column: target_id
  130. type: image
  131. settings:
  132. image_link: content
  133. image_style: thumbnail
  134. image_loading:
  135. attribute: lazy
  136. group_column: ''
  137. group_columns: { }
  138. group_rows: true
  139. delta_limit: 1
  140. delta_offset: 0
  141. delta_reversed: false
  142. delta_first_last: false
  143. multi_type: separator
  144. separator: ', '
  145. field_api_classes: false
  146. title:
  147. id: title
  148. table: node_field_data
  149. field: title
  150. entity_type: node
  151. entity_field: title
  152. plugin_id: field
  153. label: Titre
  154. exclude: false
  155. alter:
  156. alter_text: false
  157. element_class: ''
  158. element_default_classes: true
  159. empty: ''
  160. hide_empty: false
  161. empty_zero: false
  162. hide_alter_empty: true
  163. type: string
  164. settings:
  165. link_to_entity: true
  166. operations:
  167. id: operations
  168. table: node
  169. field: operations
  170. relationship: none
  171. group_type: group
  172. admin_label: ''
  173. plugin_id: entity_operations
  174. label: Operations
  175. exclude: false
  176. alter:
  177. alter_text: false
  178. text: ''
  179. make_link: false
  180. path: ''
  181. absolute: false
  182. external: false
  183. replace_spaces: false
  184. path_case: none
  185. trim_whitespace: false
  186. alt: ''
  187. rel: ''
  188. link_class: ''
  189. prefix: ''
  190. suffix: ''
  191. target: ''
  192. nl2br: false
  193. max_length: 0
  194. word_boundary: true
  195. ellipsis: true
  196. more_link: false
  197. more_link_text: ''
  198. more_link_path: ''
  199. strip_tags: false
  200. trim: false
  201. preserve_tags: ''
  202. html: false
  203. element_type: ''
  204. element_class: ''
  205. element_label_type: ''
  206. element_label_class: ''
  207. element_label_colon: true
  208. element_wrapper_type: ''
  209. element_wrapper_class: ''
  210. element_default_classes: true
  211. empty: ''
  212. hide_empty: false
  213. empty_zero: false
  214. hide_alter_empty: true
  215. destination: true
  216. field_actif:
  217. id: field_actif
  218. table: node__field_actif
  219. field: field_actif
  220. relationship: none
  221. group_type: group
  222. admin_label: ''
  223. plugin_id: field
  224. label: Actif
  225. exclude: false
  226. alter:
  227. alter_text: false
  228. text: ''
  229. make_link: false
  230. path: ''
  231. absolute: false
  232. external: false
  233. replace_spaces: false
  234. path_case: none
  235. trim_whitespace: false
  236. alt: ''
  237. rel: ''
  238. link_class: ''
  239. prefix: ''
  240. suffix: ''
  241. target: ''
  242. nl2br: false
  243. max_length: 0
  244. word_boundary: true
  245. ellipsis: true
  246. more_link: false
  247. more_link_text: ''
  248. more_link_path: ''
  249. strip_tags: false
  250. trim: false
  251. preserve_tags: ''
  252. html: false
  253. element_type: ''
  254. element_class: ''
  255. element_label_type: ''
  256. element_label_class: ''
  257. element_label_colon: true
  258. element_wrapper_type: ''
  259. element_wrapper_class: ''
  260. element_default_classes: true
  261. empty: ''
  262. hide_empty: false
  263. empty_zero: false
  264. hide_alter_empty: true
  265. click_sort_column: value
  266. type: boolean
  267. settings:
  268. format: yes-no
  269. format_custom_false: ''
  270. format_custom_true: ''
  271. group_column: value
  272. group_columns: { }
  273. group_rows: true
  274. delta_limit: 0
  275. delta_offset: 0
  276. delta_reversed: false
  277. delta_first_last: false
  278. multi_type: separator
  279. separator: ', '
  280. field_api_classes: false
  281. name:
  282. id: name
  283. table: users_field_data
  284. field: name
  285. relationship: uid
  286. entity_type: user
  287. entity_field: name
  288. plugin_id: field
  289. label: Auteur
  290. exclude: false
  291. alter:
  292. alter_text: false
  293. element_class: ''
  294. element_default_classes: true
  295. empty: ''
  296. hide_empty: false
  297. empty_zero: false
  298. hide_alter_empty: true
  299. type: user_name
  300. status:
  301. id: status
  302. table: node_field_data
  303. field: status
  304. entity_type: node
  305. entity_field: status
  306. plugin_id: field
  307. label: Status
  308. exclude: false
  309. alter:
  310. alter_text: false
  311. element_class: ''
  312. element_default_classes: true
  313. empty: ''
  314. hide_empty: false
  315. empty_zero: false
  316. hide_alter_empty: true
  317. type: boolean
  318. settings:
  319. format: custom
  320. format_custom_false: 'Non publié'
  321. format_custom_true: Publié
  322. changed:
  323. id: changed
  324. table: node_field_data
  325. field: changed
  326. entity_type: node
  327. entity_field: changed
  328. plugin_id: field
  329. label: Updated
  330. exclude: false
  331. alter:
  332. alter_text: false
  333. element_class: ''
  334. element_default_classes: true
  335. empty: ''
  336. hide_empty: false
  337. empty_zero: false
  338. hide_alter_empty: true
  339. type: timestamp
  340. settings:
  341. date_format: short
  342. custom_date_format: ''
  343. timezone: ''
  344. pager:
  345. type: full
  346. options:
  347. items_per_page: 50
  348. tags:
  349. next: 'Next ›'
  350. previous: '‹ Previous'
  351. first: '« First'
  352. last: 'Last »'
  353. exposed_form:
  354. type: basic
  355. options:
  356. submit_button: Filter
  357. reset_button: true
  358. reset_button_label: Reset
  359. exposed_sorts_label: 'Sort by'
  360. expose_sort_order: true
  361. sort_asc_label: Asc
  362. sort_desc_label: Desc
  363. access:
  364. type: perm
  365. options:
  366. perm: 'access content overview'
  367. cache:
  368. type: tag
  369. empty:
  370. area_text_custom:
  371. id: area_text_custom
  372. table: views
  373. field: area_text_custom
  374. plugin_id: text_custom
  375. empty: true
  376. content: 'Aucun contenu disponible.'
  377. sorts:
  378. changed:
  379. id: changed
  380. table: node_field_data
  381. field: changed
  382. relationship: none
  383. group_type: group
  384. admin_label: ''
  385. entity_type: node
  386. entity_field: changed
  387. plugin_id: date
  388. order: DESC
  389. expose:
  390. label: ''
  391. field_identifier: changed
  392. exposed: false
  393. granularity: second
  394. arguments: { }
  395. filters:
  396. title:
  397. id: title
  398. table: node_field_data
  399. field: title
  400. relationship: none
  401. group_type: group
  402. admin_label: ''
  403. entity_type: node
  404. entity_field: title
  405. plugin_id: string
  406. operator: contains
  407. value: ''
  408. group: 1
  409. exposed: true
  410. expose:
  411. operator_id: title_op
  412. label: Titre
  413. description: ''
  414. use_operator: false
  415. operator: title_op
  416. operator_limit_selection: false
  417. operator_list: { }
  418. identifier: title
  419. required: false
  420. remember: false
  421. multiple: false
  422. remember_roles:
  423. authenticated: authenticated
  424. anonymous: '0'
  425. administrator: '0'
  426. is_grouped: false
  427. group_info:
  428. label: ''
  429. description: ''
  430. identifier: ''
  431. optional: true
  432. widget: select
  433. multiple: false
  434. remember: false
  435. default_group: All
  436. default_group_multiple: { }
  437. group_items: { }
  438. type:
  439. id: type
  440. table: node_field_data
  441. field: type
  442. relationship: none
  443. group_type: group
  444. admin_label: ''
  445. entity_type: node
  446. entity_field: type
  447. plugin_id: bundle
  448. operator: in
  449. value:
  450. theme: theme
  451. group: 1
  452. exposed: false
  453. expose:
  454. operator_id: type_op
  455. label: 'Type de contenu'
  456. description: ''
  457. use_operator: false
  458. operator: type_op
  459. operator_limit_selection: false
  460. operator_list: { }
  461. identifier: type
  462. required: false
  463. remember: false
  464. multiple: false
  465. remember_roles:
  466. authenticated: authenticated
  467. anonymous: '0'
  468. administrator: '0'
  469. reduce: false
  470. is_grouped: false
  471. group_info:
  472. label: ''
  473. description: ''
  474. identifier: ''
  475. optional: true
  476. widget: select
  477. multiple: false
  478. remember: false
  479. default_group: All
  480. default_group_multiple: { }
  481. group_items: { }
  482. status:
  483. id: status
  484. table: node_field_data
  485. field: status
  486. relationship: none
  487. group_type: group
  488. admin_label: ''
  489. entity_type: node
  490. entity_field: status
  491. plugin_id: boolean
  492. operator: '='
  493. value: '1'
  494. group: 1
  495. exposed: true
  496. expose:
  497. operator_id: ''
  498. label: Status
  499. description: ''
  500. use_operator: false
  501. operator: status_op
  502. operator_limit_selection: false
  503. operator_list: { }
  504. identifier: status
  505. required: false
  506. remember: false
  507. multiple: false
  508. remember_roles:
  509. authenticated: authenticated
  510. is_grouped: true
  511. group_info:
  512. label: 'Statut de publication'
  513. description: ''
  514. identifier: status
  515. optional: true
  516. widget: select
  517. multiple: false
  518. remember: false
  519. default_group: All
  520. default_group_multiple: { }
  521. group_items:
  522. 1:
  523. title: Publié
  524. operator: '='
  525. value: '1'
  526. 2:
  527. title: 'Non publié'
  528. operator: '='
  529. value: '0'
  530. langcode:
  531. id: langcode
  532. table: node_field_data
  533. field: langcode
  534. relationship: none
  535. group_type: group
  536. admin_label: ''
  537. entity_type: node
  538. entity_field: langcode
  539. plugin_id: language
  540. operator: in
  541. value: { }
  542. group: 1
  543. exposed: true
  544. expose:
  545. operator_id: langcode_op
  546. label: Langue
  547. description: ''
  548. use_operator: false
  549. operator: langcode_op
  550. operator_limit_selection: false
  551. operator_list: { }
  552. identifier: langcode
  553. required: false
  554. remember: false
  555. multiple: false
  556. remember_roles:
  557. authenticated: authenticated
  558. anonymous: '0'
  559. administrator: '0'
  560. reduce: false
  561. is_grouped: false
  562. group_info:
  563. label: ''
  564. description: ''
  565. identifier: ''
  566. optional: true
  567. widget: select
  568. multiple: false
  569. remember: false
  570. default_group: All
  571. default_group_multiple: { }
  572. group_items: { }
  573. status_extra:
  574. id: status_extra
  575. table: node_field_data
  576. field: status_extra
  577. entity_type: node
  578. plugin_id: node_status
  579. operator: '='
  580. value: false
  581. group: 1
  582. expose:
  583. operator_limit_selection: false
  584. operator_list: { }
  585. filter_groups:
  586. operator: AND
  587. groups:
  588. 1: AND
  589. style:
  590. type: table
  591. options:
  592. grouping: { }
  593. row_class: ''
  594. default_row_class: true
  595. columns:
  596. node_bulk_form: node_bulk_form
  597. field_diaporama: field_diaporama
  598. title: title
  599. field_type_de_projet: title
  600. operations: title
  601. field_programme: field_programme
  602. field_ville: field_ville
  603. field_projets_lies: field_projets_lies
  604. field_themes_lies: field_themes_lies
  605. field_comparatifs_associes: field_comparatifs_associes
  606. field_partenaires: field_partenaires
  607. status: status
  608. changed: changed
  609. field_memo: field_memo
  610. field_actif: field_actif
  611. default: '-1'
  612. info:
  613. node_bulk_form:
  614. align: ''
  615. separator: ''
  616. empty_column: false
  617. responsive: ''
  618. field_diaporama:
  619. align: ''
  620. separator: ''
  621. empty_column: false
  622. responsive: ''
  623. title:
  624. sortable: true
  625. default_sort_order: asc
  626. align: ''
  627. separator: '<br/>'
  628. empty_column: false
  629. responsive: ''
  630. field_type_de_projet:
  631. sortable: false
  632. default_sort_order: asc
  633. align: ''
  634. separator: ''
  635. empty_column: false
  636. responsive: ''
  637. operations:
  638. align: ''
  639. separator: ''
  640. empty_column: false
  641. responsive: ''
  642. field_programme:
  643. align: ''
  644. separator: ''
  645. empty_column: false
  646. responsive: ''
  647. field_ville:
  648. sortable: false
  649. default_sort_order: asc
  650. align: ''
  651. separator: ''
  652. empty_column: false
  653. responsive: ''
  654. field_projets_lies:
  655. align: ''
  656. separator: ''
  657. empty_column: false
  658. responsive: ''
  659. field_themes_lies:
  660. align: ''
  661. separator: ''
  662. empty_column: false
  663. responsive: ''
  664. field_comparatifs_associes:
  665. align: ''
  666. separator: ''
  667. empty_column: false
  668. responsive: ''
  669. field_partenaires:
  670. align: ''
  671. separator: ''
  672. empty_column: false
  673. responsive: ''
  674. status:
  675. sortable: true
  676. default_sort_order: asc
  677. align: ''
  678. separator: ''
  679. empty_column: false
  680. responsive: ''
  681. changed:
  682. sortable: true
  683. default_sort_order: desc
  684. align: ''
  685. separator: ''
  686. empty_column: false
  687. responsive: priority-low
  688. field_memo:
  689. sortable: false
  690. default_sort_order: asc
  691. align: ''
  692. separator: ''
  693. empty_column: false
  694. responsive: ''
  695. field_actif:
  696. sortable: false
  697. default_sort_order: asc
  698. align: ''
  699. separator: ''
  700. empty_column: false
  701. responsive: ''
  702. override: true
  703. sticky: true
  704. summary: ''
  705. empty_table: true
  706. caption: ''
  707. description: ''
  708. row:
  709. type: fields
  710. query:
  711. type: views_query
  712. relationships:
  713. uid:
  714. id: uid
  715. table: node_field_data
  716. field: uid
  717. admin_label: author
  718. plugin_id: standard
  719. required: true
  720. show_admin_links: false
  721. header:
  722. result:
  723. id: result
  724. table: views
  725. field: result
  726. relationship: none
  727. group_type: group
  728. admin_label: ''
  729. plugin_id: result
  730. empty: false
  731. content: 'Affichage de @start à @end sur @total'
  732. display_extenders: { }
  733. cache_metadata:
  734. max-age: 0
  735. contexts:
  736. - 'languages:language_content'
  737. - 'languages:language_interface'
  738. - url
  739. - url.query_args
  740. - user
  741. - 'user.node_grants:view'
  742. - user.permissions
  743. tags:
  744. - 'config:field.storage.node.field_actif'
  745. - 'config:field.storage.node.field_diaporama'
  746. page_1:
  747. id: page_1
  748. display_title: 'Page <b>@number</b> / @total'
  749. display_plugin: page
  750. position: 1
  751. display_options:
  752. title: Programmes
  753. fields:
  754. node_bulk_form:
  755. id: node_bulk_form
  756. table: node
  757. field: node_bulk_form
  758. entity_type: node
  759. plugin_id: node_bulk_form
  760. label: ''
  761. exclude: false
  762. alter:
  763. alter_text: false
  764. element_class: ''
  765. element_default_classes: true
  766. empty: ''
  767. hide_empty: false
  768. empty_zero: false
  769. hide_alter_empty: true
  770. field_diaporama:
  771. id: field_diaporama
  772. table: node__field_diaporama
  773. field: field_diaporama
  774. relationship: none
  775. group_type: group
  776. admin_label: ''
  777. plugin_id: field
  778. label: Diaporama
  779. exclude: false
  780. alter:
  781. alter_text: false
  782. text: ''
  783. make_link: false
  784. path: ''
  785. absolute: false
  786. external: false
  787. replace_spaces: false
  788. path_case: none
  789. trim_whitespace: false
  790. alt: ''
  791. rel: ''
  792. link_class: ''
  793. prefix: ''
  794. suffix: ''
  795. target: ''
  796. nl2br: false
  797. max_length: 0
  798. word_boundary: true
  799. ellipsis: true
  800. more_link: false
  801. more_link_text: ''
  802. more_link_path: ''
  803. strip_tags: false
  804. trim: false
  805. preserve_tags: ''
  806. html: false
  807. element_type: ''
  808. element_class: ''
  809. element_label_type: ''
  810. element_label_class: ''
  811. element_label_colon: true
  812. element_wrapper_type: ''
  813. element_wrapper_class: ''
  814. element_default_classes: true
  815. empty: ''
  816. hide_empty: false
  817. empty_zero: false
  818. hide_alter_empty: true
  819. click_sort_column: target_id
  820. type: image
  821. settings:
  822. image_link: content
  823. image_style: thumbnail
  824. image_loading:
  825. attribute: lazy
  826. group_column: ''
  827. group_columns: { }
  828. group_rows: true
  829. delta_limit: 1
  830. delta_offset: 0
  831. delta_reversed: false
  832. delta_first_last: false
  833. multi_type: separator
  834. separator: ', '
  835. field_api_classes: false
  836. title:
  837. id: title
  838. table: node_field_data
  839. field: title
  840. entity_type: node
  841. entity_field: title
  842. plugin_id: field
  843. label: Titre
  844. exclude: false
  845. alter:
  846. alter_text: false
  847. element_class: ''
  848. element_default_classes: true
  849. empty: ''
  850. hide_empty: false
  851. empty_zero: false
  852. hide_alter_empty: true
  853. type: string
  854. settings:
  855. link_to_entity: true
  856. operations:
  857. id: operations
  858. table: node
  859. field: operations
  860. relationship: none
  861. group_type: group
  862. admin_label: ''
  863. plugin_id: entity_operations
  864. label: Operations
  865. exclude: false
  866. alter:
  867. alter_text: false
  868. text: ''
  869. make_link: false
  870. path: ''
  871. absolute: false
  872. external: false
  873. replace_spaces: false
  874. path_case: none
  875. trim_whitespace: false
  876. alt: ''
  877. rel: ''
  878. link_class: ''
  879. prefix: ''
  880. suffix: ''
  881. target: ''
  882. nl2br: false
  883. max_length: 0
  884. word_boundary: true
  885. ellipsis: true
  886. more_link: false
  887. more_link_text: ''
  888. more_link_path: ''
  889. strip_tags: false
  890. trim: false
  891. preserve_tags: ''
  892. html: false
  893. element_type: ''
  894. element_class: ''
  895. element_label_type: ''
  896. element_label_class: ''
  897. element_label_colon: true
  898. element_wrapper_type: ''
  899. element_wrapper_class: ''
  900. element_default_classes: true
  901. empty: ''
  902. hide_empty: false
  903. empty_zero: false
  904. hide_alter_empty: true
  905. destination: true
  906. field_actif:
  907. id: field_actif
  908. table: node__field_actif
  909. field: field_actif
  910. relationship: none
  911. group_type: group
  912. admin_label: ''
  913. plugin_id: field
  914. label: Actif
  915. exclude: false
  916. alter:
  917. alter_text: false
  918. text: ''
  919. make_link: false
  920. path: ''
  921. absolute: false
  922. external: false
  923. replace_spaces: false
  924. path_case: none
  925. trim_whitespace: false
  926. alt: ''
  927. rel: ''
  928. link_class: ''
  929. prefix: ''
  930. suffix: ''
  931. target: ''
  932. nl2br: false
  933. max_length: 0
  934. word_boundary: true
  935. ellipsis: true
  936. more_link: false
  937. more_link_text: ''
  938. more_link_path: ''
  939. strip_tags: false
  940. trim: false
  941. preserve_tags: ''
  942. html: false
  943. element_type: ''
  944. element_class: ''
  945. element_label_type: ''
  946. element_label_class: ''
  947. element_label_colon: true
  948. element_wrapper_type: ''
  949. element_wrapper_class: ''
  950. element_default_classes: true
  951. empty: ''
  952. hide_empty: false
  953. empty_zero: false
  954. hide_alter_empty: true
  955. click_sort_column: value
  956. type: boolean
  957. settings:
  958. format: yes-no
  959. format_custom_false: ''
  960. format_custom_true: ''
  961. group_column: value
  962. group_columns: { }
  963. group_rows: true
  964. delta_limit: 0
  965. delta_offset: 0
  966. delta_reversed: false
  967. delta_first_last: false
  968. multi_type: separator
  969. separator: ', '
  970. field_api_classes: false
  971. name:
  972. id: name
  973. table: users_field_data
  974. field: name
  975. relationship: uid
  976. entity_type: user
  977. entity_field: name
  978. plugin_id: field
  979. label: Auteur
  980. exclude: false
  981. alter:
  982. alter_text: false
  983. element_class: ''
  984. element_default_classes: true
  985. empty: ''
  986. hide_empty: false
  987. empty_zero: false
  988. hide_alter_empty: true
  989. type: user_name
  990. status:
  991. id: status
  992. table: node_field_data
  993. field: status
  994. entity_type: node
  995. entity_field: status
  996. plugin_id: field
  997. label: Status
  998. exclude: false
  999. alter:
  1000. alter_text: false
  1001. element_class: ''
  1002. element_default_classes: true
  1003. empty: ''
  1004. hide_empty: false
  1005. empty_zero: false
  1006. hide_alter_empty: true
  1007. type: boolean
  1008. settings:
  1009. format: custom
  1010. format_custom_false: 'Non publié'
  1011. format_custom_true: Publié
  1012. changed:
  1013. id: changed
  1014. table: node_field_data
  1015. field: changed
  1016. entity_type: node
  1017. entity_field: changed
  1018. plugin_id: field
  1019. label: Updated
  1020. exclude: false
  1021. alter:
  1022. alter_text: false
  1023. element_class: ''
  1024. element_default_classes: true
  1025. empty: ''
  1026. hide_empty: false
  1027. empty_zero: false
  1028. hide_alter_empty: true
  1029. type: timestamp
  1030. settings:
  1031. date_format: short
  1032. custom_date_format: ''
  1033. timezone: ''
  1034. field_poid:
  1035. id: field_poid
  1036. table: node__field_poid
  1037. field: field_poid
  1038. relationship: none
  1039. group_type: group
  1040. admin_label: ''
  1041. plugin_id: field
  1042. label: Poid
  1043. exclude: false
  1044. alter:
  1045. alter_text: false
  1046. text: ''
  1047. make_link: false
  1048. path: ''
  1049. absolute: false
  1050. external: false
  1051. replace_spaces: false
  1052. path_case: none
  1053. trim_whitespace: false
  1054. alt: ''
  1055. rel: ''
  1056. link_class: ''
  1057. prefix: ''
  1058. suffix: ''
  1059. target: ''
  1060. nl2br: false
  1061. max_length: 0
  1062. word_boundary: true
  1063. ellipsis: true
  1064. more_link: false
  1065. more_link_text: ''
  1066. more_link_path: ''
  1067. strip_tags: false
  1068. trim: false
  1069. preserve_tags: ''
  1070. html: false
  1071. element_type: ''
  1072. element_class: ''
  1073. element_label_type: ''
  1074. element_label_class: ''
  1075. element_label_colon: true
  1076. element_wrapper_type: ''
  1077. element_wrapper_class: ''
  1078. element_default_classes: true
  1079. empty: ''
  1080. hide_empty: false
  1081. empty_zero: false
  1082. hide_alter_empty: true
  1083. click_sort_column: value
  1084. type: number_integer
  1085. settings:
  1086. thousand_separator: ''
  1087. prefix_suffix: true
  1088. group_column: value
  1089. group_columns: { }
  1090. group_rows: true
  1091. delta_limit: 0
  1092. delta_offset: 0
  1093. delta_reversed: false
  1094. delta_first_last: false
  1095. multi_type: separator
  1096. separator: ', '
  1097. field_api_classes: false
  1098. sorts:
  1099. field_poid_value:
  1100. id: field_poid_value
  1101. table: node__field_poid
  1102. field: field_poid_value
  1103. relationship: none
  1104. group_type: group
  1105. admin_label: ''
  1106. plugin_id: standard
  1107. order: ASC
  1108. expose:
  1109. label: 'Poid (field_poid)'
  1110. field_identifier: field_poid_value
  1111. exposed: false
  1112. filters:
  1113. title:
  1114. id: title
  1115. table: node_field_data
  1116. field: title
  1117. relationship: none
  1118. group_type: group
  1119. admin_label: ''
  1120. entity_type: node
  1121. entity_field: title
  1122. plugin_id: string
  1123. operator: contains
  1124. value: ''
  1125. group: 1
  1126. exposed: true
  1127. expose:
  1128. operator_id: title_op
  1129. label: Titre
  1130. description: ''
  1131. use_operator: false
  1132. operator: title_op
  1133. operator_limit_selection: false
  1134. operator_list: { }
  1135. identifier: title
  1136. required: false
  1137. remember: false
  1138. multiple: false
  1139. remember_roles:
  1140. authenticated: authenticated
  1141. anonymous: '0'
  1142. administrator: '0'
  1143. is_grouped: false
  1144. group_info:
  1145. label: ''
  1146. description: ''
  1147. identifier: ''
  1148. optional: true
  1149. widget: select
  1150. multiple: false
  1151. remember: false
  1152. default_group: All
  1153. default_group_multiple: { }
  1154. group_items: { }
  1155. type:
  1156. id: type
  1157. table: node_field_data
  1158. field: type
  1159. relationship: none
  1160. group_type: group
  1161. admin_label: ''
  1162. entity_type: node
  1163. entity_field: type
  1164. plugin_id: bundle
  1165. operator: in
  1166. value:
  1167. programme: programme
  1168. group: 1
  1169. exposed: false
  1170. expose:
  1171. operator_id: type_op
  1172. label: 'Type de contenu'
  1173. description: ''
  1174. use_operator: false
  1175. operator: type_op
  1176. operator_limit_selection: false
  1177. operator_list: { }
  1178. identifier: type
  1179. required: false
  1180. remember: false
  1181. multiple: false
  1182. remember_roles:
  1183. authenticated: authenticated
  1184. anonymous: '0'
  1185. administrator: '0'
  1186. reduce: false
  1187. is_grouped: false
  1188. group_info:
  1189. label: ''
  1190. description: ''
  1191. identifier: ''
  1192. optional: true
  1193. widget: select
  1194. multiple: false
  1195. remember: false
  1196. default_group: All
  1197. default_group_multiple: { }
  1198. group_items: { }
  1199. status:
  1200. id: status
  1201. table: node_field_data
  1202. field: status
  1203. relationship: none
  1204. group_type: group
  1205. admin_label: ''
  1206. entity_type: node
  1207. entity_field: status
  1208. plugin_id: boolean
  1209. operator: '='
  1210. value: '1'
  1211. group: 1
  1212. exposed: true
  1213. expose:
  1214. operator_id: ''
  1215. label: État
  1216. description: ''
  1217. use_operator: false
  1218. operator: status_op
  1219. operator_limit_selection: false
  1220. operator_list: { }
  1221. identifier: status
  1222. required: false
  1223. remember: false
  1224. multiple: false
  1225. remember_roles:
  1226. authenticated: authenticated
  1227. is_grouped: true
  1228. group_info:
  1229. label: 'Statut de publication'
  1230. description: ''
  1231. identifier: status
  1232. optional: true
  1233. widget: select
  1234. multiple: false
  1235. remember: false
  1236. default_group: All
  1237. default_group_multiple: { }
  1238. group_items:
  1239. 1:
  1240. title: Publié
  1241. operator: '='
  1242. value: '1'
  1243. 2:
  1244. title: 'Non publié'
  1245. operator: '='
  1246. value: '0'
  1247. status_extra:
  1248. id: status_extra
  1249. table: node_field_data
  1250. field: status_extra
  1251. entity_type: node
  1252. plugin_id: node_status
  1253. operator: '='
  1254. value: false
  1255. group: 1
  1256. expose:
  1257. operator_limit_selection: false
  1258. operator_list: { }
  1259. field_actif_value:
  1260. id: field_actif_value
  1261. table: node__field_actif
  1262. field: field_actif_value
  1263. relationship: none
  1264. group_type: group
  1265. admin_label: ''
  1266. plugin_id: boolean
  1267. operator: '='
  1268. value: All
  1269. group: 1
  1270. exposed: true
  1271. expose:
  1272. operator_id: ''
  1273. label: Actif
  1274. description: ''
  1275. use_operator: false
  1276. operator: field_actif_value_op
  1277. operator_limit_selection: false
  1278. operator_list: { }
  1279. identifier: field_actif_value
  1280. required: false
  1281. remember: false
  1282. multiple: false
  1283. remember_roles:
  1284. authenticated: authenticated
  1285. anonymous: '0'
  1286. admin: '0'
  1287. root: '0'
  1288. user: '0'
  1289. editeur: '0'
  1290. is_grouped: false
  1291. group_info:
  1292. label: ''
  1293. description: ''
  1294. identifier: ''
  1295. optional: true
  1296. widget: select
  1297. multiple: false
  1298. remember: false
  1299. default_group: All
  1300. default_group_multiple: { }
  1301. group_items: { }
  1302. filter_groups:
  1303. operator: AND
  1304. groups:
  1305. 1: AND
  1306. defaults:
  1307. title: false
  1308. fields: false
  1309. sorts: false
  1310. filters: false
  1311. filter_groups: false
  1312. display_description: ''
  1313. display_extenders:
  1314. views_ef_fieldset: { }
  1315. path: admin/content/programme
  1316. menu:
  1317. type: 'default tab'
  1318. title: Content
  1319. description: ''
  1320. weight: -10
  1321. expanded: false
  1322. menu_name: admin
  1323. parent: ''
  1324. context: '0'
  1325. tab_options:
  1326. type: normal
  1327. title: Content
  1328. description: 'Trouver et gérer le contenu'
  1329. weight: -10
  1330. cache_metadata:
  1331. max-age: 0
  1332. contexts:
  1333. - 'languages:language_content'
  1334. - 'languages:language_interface'
  1335. - url
  1336. - url.query_args
  1337. - user
  1338. - 'user.node_grants:view'
  1339. - user.permissions
  1340. tags:
  1341. - 'config:field.storage.node.field_actif'
  1342. - 'config:field.storage.node.field_diaporama'
  1343. - 'config:field.storage.node.field_poid'
  1344. page_2:
  1345. id: page_2
  1346. display_title: Themes
  1347. display_plugin: page
  1348. position: 1
  1349. display_options:
  1350. title: Themes
  1351. fields:
  1352. node_bulk_form:
  1353. id: node_bulk_form
  1354. table: node
  1355. field: node_bulk_form
  1356. entity_type: node
  1357. plugin_id: node_bulk_form
  1358. label: ''
  1359. exclude: false
  1360. alter:
  1361. alter_text: false
  1362. element_class: ''
  1363. element_default_classes: true
  1364. empty: ''
  1365. hide_empty: false
  1366. empty_zero: false
  1367. hide_alter_empty: true
  1368. field_image:
  1369. id: field_image
  1370. table: node__field_image
  1371. field: field_image
  1372. relationship: none
  1373. group_type: group
  1374. admin_label: ''
  1375. plugin_id: field
  1376. label: Image
  1377. exclude: false
  1378. alter:
  1379. alter_text: false
  1380. text: ''
  1381. make_link: false
  1382. path: ''
  1383. absolute: false
  1384. external: false
  1385. replace_spaces: false
  1386. path_case: none
  1387. trim_whitespace: false
  1388. alt: ''
  1389. rel: ''
  1390. link_class: ''
  1391. prefix: ''
  1392. suffix: ''
  1393. target: ''
  1394. nl2br: false
  1395. max_length: 0
  1396. word_boundary: true
  1397. ellipsis: true
  1398. more_link: false
  1399. more_link_text: ''
  1400. more_link_path: ''
  1401. strip_tags: false
  1402. trim: false
  1403. preserve_tags: ''
  1404. html: false
  1405. element_type: ''
  1406. element_class: ''
  1407. element_label_type: ''
  1408. element_label_class: ''
  1409. element_label_colon: false
  1410. element_wrapper_type: ''
  1411. element_wrapper_class: ''
  1412. element_default_classes: true
  1413. empty: ''
  1414. hide_empty: false
  1415. empty_zero: false
  1416. hide_alter_empty: true
  1417. click_sort_column: target_id
  1418. type: image
  1419. settings:
  1420. image_link: ''
  1421. image_style: thumbnail
  1422. image_loading:
  1423. attribute: lazy
  1424. group_column: ''
  1425. group_columns: { }
  1426. group_rows: true
  1427. delta_limit: 0
  1428. delta_offset: 0
  1429. delta_reversed: false
  1430. delta_first_last: false
  1431. multi_type: separator
  1432. separator: ', '
  1433. field_api_classes: false
  1434. title:
  1435. id: title
  1436. table: node_field_data
  1437. field: title
  1438. entity_type: node
  1439. entity_field: title
  1440. plugin_id: field
  1441. label: Titre
  1442. exclude: false
  1443. alter:
  1444. alter_text: false
  1445. element_class: ''
  1446. element_default_classes: true
  1447. empty: ''
  1448. hide_empty: false
  1449. empty_zero: false
  1450. hide_alter_empty: true
  1451. type: string
  1452. settings:
  1453. link_to_entity: true
  1454. field_type_de_theme:
  1455. id: field_type_de_theme
  1456. table: node__field_type_de_theme
  1457. field: field_type_de_theme
  1458. relationship: none
  1459. group_type: group
  1460. admin_label: ''
  1461. plugin_id: field
  1462. label: 'Type de theme'
  1463. exclude: false
  1464. alter:
  1465. alter_text: false
  1466. text: ''
  1467. make_link: false
  1468. path: ''
  1469. absolute: false
  1470. external: false
  1471. replace_spaces: false
  1472. path_case: none
  1473. trim_whitespace: false
  1474. alt: ''
  1475. rel: ''
  1476. link_class: ''
  1477. prefix: ''
  1478. suffix: ''
  1479. target: ''
  1480. nl2br: false
  1481. max_length: 0
  1482. word_boundary: true
  1483. ellipsis: true
  1484. more_link: false
  1485. more_link_text: ''
  1486. more_link_path: ''
  1487. strip_tags: false
  1488. trim: false
  1489. preserve_tags: ''
  1490. html: false
  1491. element_type: ''
  1492. element_class: ''
  1493. element_label_type: ''
  1494. element_label_class: ''
  1495. element_label_colon: true
  1496. element_wrapper_type: ''
  1497. element_wrapper_class: ''
  1498. element_default_classes: true
  1499. empty: ''
  1500. hide_empty: false
  1501. empty_zero: false
  1502. hide_alter_empty: true
  1503. click_sort_column: target_id
  1504. type: entity_reference_label
  1505. settings:
  1506. link: true
  1507. group_column: target_id
  1508. group_columns: { }
  1509. group_rows: true
  1510. delta_limit: 0
  1511. delta_offset: 0
  1512. delta_reversed: false
  1513. delta_first_last: false
  1514. multi_type: separator
  1515. separator: ', '
  1516. field_api_classes: false
  1517. operations:
  1518. id: operations
  1519. table: node
  1520. field: operations
  1521. relationship: none
  1522. group_type: group
  1523. admin_label: ''
  1524. plugin_id: entity_operations
  1525. label: Actions
  1526. exclude: false
  1527. alter:
  1528. alter_text: false
  1529. text: ''
  1530. make_link: false
  1531. path: ''
  1532. absolute: false
  1533. external: false
  1534. replace_spaces: false
  1535. path_case: none
  1536. trim_whitespace: false
  1537. alt: ''
  1538. rel: ''
  1539. link_class: ''
  1540. prefix: ''
  1541. suffix: ''
  1542. target: ''
  1543. nl2br: false
  1544. max_length: 0
  1545. word_boundary: true
  1546. ellipsis: true
  1547. more_link: false
  1548. more_link_text: ''
  1549. more_link_path: ''
  1550. strip_tags: false
  1551. trim: false
  1552. preserve_tags: ''
  1553. html: false
  1554. element_type: ''
  1555. element_class: ''
  1556. element_label_type: ''
  1557. element_label_class: ''
  1558. element_label_colon: true
  1559. element_wrapper_type: ''
  1560. element_wrapper_class: ''
  1561. element_default_classes: true
  1562. empty: ''
  1563. hide_empty: false
  1564. empty_zero: false
  1565. hide_alter_empty: true
  1566. destination: true
  1567. field_programme:
  1568. id: field_programme
  1569. table: node__field_programme
  1570. field: field_programme
  1571. relationship: none
  1572. group_type: group
  1573. admin_label: ''
  1574. plugin_id: field
  1575. label: 'Programme Popsu'
  1576. exclude: false
  1577. alter:
  1578. alter_text: false
  1579. text: ''
  1580. make_link: false
  1581. path: ''
  1582. absolute: false
  1583. external: false
  1584. replace_spaces: false
  1585. path_case: none
  1586. trim_whitespace: false
  1587. alt: ''
  1588. rel: ''
  1589. link_class: ''
  1590. prefix: ''
  1591. suffix: ''
  1592. target: ''
  1593. nl2br: false
  1594. max_length: 0
  1595. word_boundary: true
  1596. ellipsis: true
  1597. more_link: false
  1598. more_link_text: ''
  1599. more_link_path: ''
  1600. strip_tags: false
  1601. trim: false
  1602. preserve_tags: ''
  1603. html: false
  1604. element_type: ''
  1605. element_class: ''
  1606. element_label_type: ''
  1607. element_label_class: ''
  1608. element_label_colon: true
  1609. element_wrapper_type: ''
  1610. element_wrapper_class: ''
  1611. element_default_classes: true
  1612. empty: ''
  1613. hide_empty: false
  1614. empty_zero: false
  1615. hide_alter_empty: true
  1616. click_sort_column: target_id
  1617. type: entity_reference_label
  1618. settings:
  1619. link: true
  1620. group_column: target_id
  1621. group_columns: { }
  1622. group_rows: true
  1623. delta_limit: 0
  1624. delta_offset: 0
  1625. delta_reversed: false
  1626. delta_first_last: false
  1627. multi_type: separator
  1628. separator: ', '
  1629. field_api_classes: false
  1630. field_themes_lies:
  1631. id: field_themes_lies
  1632. table: node__field_themes_lies
  1633. field: field_themes_lies
  1634. relationship: none
  1635. group_type: group
  1636. admin_label: ''
  1637. plugin_id: field
  1638. label: 'Thèmes liés'
  1639. exclude: false
  1640. alter:
  1641. alter_text: false
  1642. text: ''
  1643. make_link: false
  1644. path: ''
  1645. absolute: false
  1646. external: false
  1647. replace_spaces: false
  1648. path_case: none
  1649. trim_whitespace: false
  1650. alt: ''
  1651. rel: ''
  1652. link_class: ''
  1653. prefix: ''
  1654. suffix: ''
  1655. target: ''
  1656. nl2br: false
  1657. max_length: 0
  1658. word_boundary: true
  1659. ellipsis: true
  1660. more_link: false
  1661. more_link_text: ''
  1662. more_link_path: ''
  1663. strip_tags: false
  1664. trim: false
  1665. preserve_tags: ''
  1666. html: false
  1667. element_type: ''
  1668. element_class: ''
  1669. element_label_type: ''
  1670. element_label_class: ''
  1671. element_label_colon: true
  1672. element_wrapper_type: ''
  1673. element_wrapper_class: ''
  1674. element_default_classes: true
  1675. empty: ''
  1676. hide_empty: false
  1677. empty_zero: false
  1678. hide_alter_empty: true
  1679. click_sort_column: target_id
  1680. type: entity_reference_label
  1681. settings:
  1682. link: true
  1683. group_column: target_id
  1684. group_columns: { }
  1685. group_rows: true
  1686. delta_limit: 0
  1687. delta_offset: 0
  1688. delta_reversed: false
  1689. delta_first_last: false
  1690. multi_type: separator
  1691. separator: ', '
  1692. field_api_classes: false
  1693. field_projets_lies:
  1694. id: field_projets_lies
  1695. table: node__field_projets_lies
  1696. field: field_projets_lies
  1697. relationship: none
  1698. group_type: group
  1699. admin_label: ''
  1700. plugin_id: field
  1701. label: 'Projets liés'
  1702. exclude: false
  1703. alter:
  1704. alter_text: false
  1705. text: ''
  1706. make_link: false
  1707. path: ''
  1708. absolute: false
  1709. external: false
  1710. replace_spaces: false
  1711. path_case: none
  1712. trim_whitespace: false
  1713. alt: ''
  1714. rel: ''
  1715. link_class: ''
  1716. prefix: ''
  1717. suffix: ''
  1718. target: ''
  1719. nl2br: false
  1720. max_length: 0
  1721. word_boundary: true
  1722. ellipsis: true
  1723. more_link: false
  1724. more_link_text: ''
  1725. more_link_path: ''
  1726. strip_tags: false
  1727. trim: false
  1728. preserve_tags: ''
  1729. html: false
  1730. element_type: ''
  1731. element_class: ''
  1732. element_label_type: ''
  1733. element_label_class: ''
  1734. element_label_colon: true
  1735. element_wrapper_type: ''
  1736. element_wrapper_class: ''
  1737. element_default_classes: true
  1738. empty: ''
  1739. hide_empty: false
  1740. empty_zero: false
  1741. hide_alter_empty: true
  1742. click_sort_column: target_id
  1743. type: entity_reference_label
  1744. settings:
  1745. link: true
  1746. group_column: target_id
  1747. group_columns: { }
  1748. group_rows: true
  1749. delta_limit: 0
  1750. delta_offset: 0
  1751. delta_reversed: false
  1752. delta_first_last: false
  1753. multi_type: separator
  1754. separator: ', '
  1755. field_api_classes: false
  1756. field_evenements_lies:
  1757. id: field_evenements_lies
  1758. table: node__field_evenements_lies
  1759. field: field_evenements_lies
  1760. relationship: none
  1761. group_type: group
  1762. admin_label: ''
  1763. plugin_id: field
  1764. label: 'Évènements liés'
  1765. exclude: false
  1766. alter:
  1767. alter_text: false
  1768. text: ''
  1769. make_link: false
  1770. path: ''
  1771. absolute: false
  1772. external: false
  1773. replace_spaces: false
  1774. path_case: none
  1775. trim_whitespace: false
  1776. alt: ''
  1777. rel: ''
  1778. link_class: ''
  1779. prefix: ''
  1780. suffix: ''
  1781. target: ''
  1782. nl2br: false
  1783. max_length: 0
  1784. word_boundary: true
  1785. ellipsis: true
  1786. more_link: false
  1787. more_link_text: ''
  1788. more_link_path: ''
  1789. strip_tags: false
  1790. trim: false
  1791. preserve_tags: ''
  1792. html: false
  1793. element_type: ''
  1794. element_class: ''
  1795. element_label_type: ''
  1796. element_label_class: ''
  1797. element_label_colon: true
  1798. element_wrapper_type: ''
  1799. element_wrapper_class: ''
  1800. element_default_classes: true
  1801. empty: ''
  1802. hide_empty: false
  1803. empty_zero: false
  1804. hide_alter_empty: true
  1805. click_sort_column: target_id
  1806. type: entity_reference_label
  1807. settings:
  1808. link: true
  1809. group_column: target_id
  1810. group_columns: { }
  1811. group_rows: true
  1812. delta_limit: 0
  1813. delta_offset: 0
  1814. delta_reversed: false
  1815. delta_first_last: false
  1816. multi_type: separator
  1817. separator: ', '
  1818. field_api_classes: false
  1819. field_ressources_liees:
  1820. id: field_ressources_liees
  1821. table: node__field_ressources_liees
  1822. field: field_ressources_liees
  1823. relationship: none
  1824. group_type: group
  1825. admin_label: ''
  1826. plugin_id: field
  1827. label: Ressources
  1828. exclude: false
  1829. alter:
  1830. alter_text: false
  1831. text: ''
  1832. make_link: false
  1833. path: ''
  1834. absolute: false
  1835. external: false
  1836. replace_spaces: false
  1837. path_case: none
  1838. trim_whitespace: false
  1839. alt: ''
  1840. rel: ''
  1841. link_class: ''
  1842. prefix: ''
  1843. suffix: ''
  1844. target: ''
  1845. nl2br: false
  1846. max_length: 0
  1847. word_boundary: true
  1848. ellipsis: true
  1849. more_link: false
  1850. more_link_text: ''
  1851. more_link_path: ''
  1852. strip_tags: false
  1853. trim: false
  1854. preserve_tags: ''
  1855. html: false
  1856. element_type: ''
  1857. element_class: ''
  1858. element_label_type: ''
  1859. element_label_class: ''
  1860. element_label_colon: true
  1861. element_wrapper_type: ''
  1862. element_wrapper_class: ''
  1863. element_default_classes: true
  1864. empty: ''
  1865. hide_empty: false
  1866. empty_zero: false
  1867. hide_alter_empty: true
  1868. click_sort_column: target_id
  1869. type: entity_reference_label
  1870. settings:
  1871. link: true
  1872. group_column: target_id
  1873. group_columns: { }
  1874. group_rows: true
  1875. delta_limit: 0
  1876. delta_offset: 0
  1877. delta_reversed: false
  1878. delta_first_last: false
  1879. multi_type: separator
  1880. separator: ', '
  1881. field_api_classes: false
  1882. field_partenaires:
  1883. id: field_partenaires
  1884. table: node__field_partenaires
  1885. field: field_partenaires
  1886. relationship: none
  1887. group_type: group
  1888. admin_label: ''
  1889. plugin_id: field
  1890. label: Partenaires
  1891. exclude: false
  1892. alter:
  1893. alter_text: false
  1894. text: ''
  1895. make_link: false
  1896. path: ''
  1897. absolute: false
  1898. external: false
  1899. replace_spaces: false
  1900. path_case: none
  1901. trim_whitespace: false
  1902. alt: ''
  1903. rel: ''
  1904. link_class: ''
  1905. prefix: ''
  1906. suffix: ''
  1907. target: ''
  1908. nl2br: false
  1909. max_length: 0
  1910. word_boundary: true
  1911. ellipsis: true
  1912. more_link: false
  1913. more_link_text: ''
  1914. more_link_path: ''
  1915. strip_tags: false
  1916. trim: false
  1917. preserve_tags: ''
  1918. html: false
  1919. element_type: ''
  1920. element_class: ''
  1921. element_label_type: ''
  1922. element_label_class: ''
  1923. element_label_colon: true
  1924. element_wrapper_type: ''
  1925. element_wrapper_class: ''
  1926. element_default_classes: true
  1927. empty: ''
  1928. hide_empty: false
  1929. empty_zero: false
  1930. hide_alter_empty: true
  1931. click_sort_column: target_id
  1932. type: entity_reference_revisions_entity_view
  1933. settings:
  1934. view_mode: admin
  1935. group_column: ''
  1936. group_columns: { }
  1937. group_rows: true
  1938. delta_limit: 0
  1939. delta_offset: 0
  1940. delta_reversed: false
  1941. delta_first_last: false
  1942. multi_type: ul
  1943. separator: ', '
  1944. field_api_classes: false
  1945. status:
  1946. id: status
  1947. table: node_field_data
  1948. field: status
  1949. entity_type: node
  1950. entity_field: status
  1951. plugin_id: field
  1952. label: État
  1953. exclude: false
  1954. alter:
  1955. alter_text: false
  1956. element_class: ''
  1957. element_default_classes: true
  1958. empty: ''
  1959. hide_empty: false
  1960. empty_zero: false
  1961. hide_alter_empty: true
  1962. type: boolean
  1963. settings:
  1964. format: custom
  1965. format_custom_false: 'Non publié'
  1966. format_custom_true: Publié
  1967. changed:
  1968. id: changed
  1969. table: node_field_data
  1970. field: changed
  1971. entity_type: node
  1972. entity_field: changed
  1973. plugin_id: field
  1974. label: 'Mis à jour'
  1975. exclude: false
  1976. alter:
  1977. alter_text: false
  1978. element_class: ''
  1979. element_default_classes: true
  1980. empty: ''
  1981. hide_empty: false
  1982. empty_zero: false
  1983. hide_alter_empty: true
  1984. type: timestamp
  1985. settings:
  1986. date_format: short
  1987. custom_date_format: ''
  1988. timezone: ''
  1989. field_memo:
  1990. id: field_memo
  1991. table: node__field_memo
  1992. field: field_memo
  1993. relationship: none
  1994. group_type: group
  1995. admin_label: ''
  1996. plugin_id: field
  1997. label: memo
  1998. exclude: false
  1999. alter:
  2000. alter_text: false
  2001. text: ''
  2002. make_link: false
  2003. path: ''
  2004. absolute: false
  2005. external: false
  2006. replace_spaces: false
  2007. path_case: none
  2008. trim_whitespace: false
  2009. alt: ''
  2010. rel: ''
  2011. link_class: ''
  2012. prefix: ''
  2013. suffix: ''
  2014. target: ''
  2015. nl2br: false
  2016. max_length: 0
  2017. word_boundary: true
  2018. ellipsis: true
  2019. more_link: false
  2020. more_link_text: ''
  2021. more_link_path: ''
  2022. strip_tags: false
  2023. trim: false
  2024. preserve_tags: ''
  2025. html: false
  2026. element_type: ''
  2027. element_class: ''
  2028. element_label_type: ''
  2029. element_label_class: ''
  2030. element_label_colon: true
  2031. element_wrapper_type: ''
  2032. element_wrapper_class: ''
  2033. element_default_classes: true
  2034. empty: ''
  2035. hide_empty: false
  2036. empty_zero: false
  2037. hide_alter_empty: true
  2038. click_sort_column: value
  2039. type: basic_string
  2040. settings: { }
  2041. group_column: value
  2042. group_columns: { }
  2043. group_rows: true
  2044. delta_limit: 0
  2045. delta_offset: 0
  2046. delta_reversed: false
  2047. delta_first_last: false
  2048. multi_type: separator
  2049. separator: ', '
  2050. field_api_classes: false
  2051. filters:
  2052. title:
  2053. id: title
  2054. table: node_field_data
  2055. field: title
  2056. relationship: none
  2057. group_type: group
  2058. admin_label: ''
  2059. entity_type: node
  2060. entity_field: title
  2061. plugin_id: string
  2062. operator: contains
  2063. value: ''
  2064. group: 1
  2065. exposed: true
  2066. expose:
  2067. operator_id: title_op
  2068. label: Titre
  2069. description: ''
  2070. use_operator: false
  2071. operator: title_op
  2072. operator_limit_selection: false
  2073. operator_list: { }
  2074. identifier: title
  2075. required: false
  2076. remember: false
  2077. multiple: false
  2078. remember_roles:
  2079. authenticated: authenticated
  2080. anonymous: '0'
  2081. administrator: '0'
  2082. is_grouped: false
  2083. group_info:
  2084. label: ''
  2085. description: ''
  2086. identifier: ''
  2087. optional: true
  2088. widget: select
  2089. multiple: false
  2090. remember: false
  2091. default_group: All
  2092. default_group_multiple: { }
  2093. group_items: { }
  2094. type:
  2095. id: type
  2096. table: node_field_data
  2097. field: type
  2098. relationship: none
  2099. group_type: group
  2100. admin_label: ''
  2101. entity_type: node
  2102. entity_field: type
  2103. plugin_id: bundle
  2104. operator: in
  2105. value:
  2106. theme: theme
  2107. group: 1
  2108. exposed: false
  2109. expose:
  2110. operator_id: type_op
  2111. label: 'Type de contenu'
  2112. description: ''
  2113. use_operator: false
  2114. operator: type_op
  2115. operator_limit_selection: false
  2116. operator_list: { }
  2117. identifier: type
  2118. required: false
  2119. remember: false
  2120. multiple: false
  2121. remember_roles:
  2122. authenticated: authenticated
  2123. anonymous: '0'
  2124. administrator: '0'
  2125. reduce: false
  2126. is_grouped: false
  2127. group_info:
  2128. label: ''
  2129. description: ''
  2130. identifier: ''
  2131. optional: true
  2132. widget: select
  2133. multiple: false
  2134. remember: false
  2135. default_group: All
  2136. default_group_multiple: { }
  2137. group_items: { }
  2138. status:
  2139. id: status
  2140. table: node_field_data
  2141. field: status
  2142. relationship: none
  2143. group_type: group
  2144. admin_label: ''
  2145. entity_type: node
  2146. entity_field: status
  2147. plugin_id: boolean
  2148. operator: '='
  2149. value: '1'
  2150. group: 1
  2151. exposed: true
  2152. expose:
  2153. operator_id: ''
  2154. label: État
  2155. description: ''
  2156. use_operator: false
  2157. operator: status_op
  2158. operator_limit_selection: false
  2159. operator_list: { }
  2160. identifier: status
  2161. required: false
  2162. remember: false
  2163. multiple: false
  2164. remember_roles:
  2165. authenticated: authenticated
  2166. is_grouped: true
  2167. group_info:
  2168. label: 'Statut de publication'
  2169. description: ''
  2170. identifier: status
  2171. optional: true
  2172. widget: select
  2173. multiple: false
  2174. remember: false
  2175. default_group: All
  2176. default_group_multiple: { }
  2177. group_items:
  2178. 1:
  2179. title: Publié
  2180. operator: '='
  2181. value: '1'
  2182. 2:
  2183. title: 'Non publié'
  2184. operator: '='
  2185. value: '0'
  2186. status_extra:
  2187. id: status_extra
  2188. table: node_field_data
  2189. field: status_extra
  2190. entity_type: node
  2191. plugin_id: node_status
  2192. operator: '='
  2193. value: false
  2194. group: 1
  2195. expose:
  2196. operator_limit_selection: false
  2197. operator_list: { }
  2198. field_type_de_theme_target_id:
  2199. id: field_type_de_theme_target_id
  2200. table: node__field_type_de_theme
  2201. field: field_type_de_theme_target_id
  2202. relationship: none
  2203. group_type: group
  2204. admin_label: ''
  2205. plugin_id: taxonomy_index_tid
  2206. operator: or
  2207. value: { }
  2208. group: 1
  2209. exposed: true
  2210. expose:
  2211. operator_id: field_type_de_theme_target_id_op
  2212. label: 'Type de theme (field_type_de_theme)'
  2213. description: ''
  2214. use_operator: false
  2215. operator: field_type_de_theme_target_id_op
  2216. operator_limit_selection: false
  2217. operator_list: { }
  2218. identifier: field_type_de_theme_target_id
  2219. required: false
  2220. remember: false
  2221. multiple: false
  2222. remember_roles:
  2223. authenticated: authenticated
  2224. anonymous: '0'
  2225. admin: '0'
  2226. root: '0'
  2227. user: '0'
  2228. editeur: '0'
  2229. reduce: false
  2230. is_grouped: false
  2231. group_info:
  2232. label: ''
  2233. description: ''
  2234. identifier: ''
  2235. optional: true
  2236. widget: select
  2237. multiple: false
  2238. remember: false
  2239. default_group: All
  2240. default_group_multiple: { }
  2241. group_items: { }
  2242. reduce_duplicates: false
  2243. vid: types_de_theme
  2244. type: textfield
  2245. hierarchy: false
  2246. limit: true
  2247. error_message: true
  2248. save_lineage: false
  2249. force_deepest: false
  2250. parent: 0
  2251. level_labels: ''
  2252. hierarchy_depth: 0
  2253. required_depth: 0
  2254. filter_groups:
  2255. operator: AND
  2256. groups:
  2257. 1: AND
  2258. defaults:
  2259. title: false
  2260. fields: false
  2261. filters: false
  2262. filter_groups: false
  2263. display_description: ''
  2264. display_extenders:
  2265. views_ef_fieldset: { }
  2266. path: admin/content/themes
  2267. menu:
  2268. type: tab
  2269. title: Themes
  2270. description: ''
  2271. weight: -10
  2272. expanded: false
  2273. menu_name: admin
  2274. parent: system.admin_content
  2275. context: '0'
  2276. tab_options:
  2277. type: normal
  2278. title: Contenu
  2279. description: 'Trouver et gérer le contenu'
  2280. weight: -10
  2281. menu_name: admin
  2282. cache_metadata:
  2283. max-age: 0
  2284. contexts:
  2285. - 'languages:language_content'
  2286. - 'languages:language_interface'
  2287. - url
  2288. - url.query_args
  2289. - user
  2290. - 'user.node_grants:view'
  2291. - user.permissions
  2292. tags:
  2293. - 'config:field.storage.node.field_evenements_lies'
  2294. - 'config:field.storage.node.field_image'
  2295. - 'config:field.storage.node.field_memo'
  2296. - 'config:field.storage.node.field_partenaires'
  2297. - 'config:field.storage.node.field_programme'
  2298. - 'config:field.storage.node.field_projets_lies'
  2299. - 'config:field.storage.node.field_ressources_liees'
  2300. - 'config:field.storage.node.field_themes_lies'
  2301. - 'config:field.storage.node.field_type_de_theme'
  2302. page_3:
  2303. id: page_3
  2304. display_title: Projets
  2305. display_plugin: page
  2306. position: 1
  2307. display_options:
  2308. title: Projets
  2309. fields:
  2310. node_bulk_form:
  2311. id: node_bulk_form
  2312. table: node
  2313. field: node_bulk_form
  2314. entity_type: node
  2315. plugin_id: node_bulk_form
  2316. label: ''
  2317. exclude: false
  2318. alter:
  2319. alter_text: false
  2320. element_class: ''
  2321. element_default_classes: true
  2322. empty: ''
  2323. hide_empty: false
  2324. empty_zero: false
  2325. hide_alter_empty: true
  2326. field_diaporama:
  2327. id: field_diaporama
  2328. table: node__field_diaporama
  2329. field: field_diaporama
  2330. relationship: none
  2331. group_type: group
  2332. admin_label: ''
  2333. plugin_id: field
  2334. label: Diaporama
  2335. exclude: false
  2336. alter:
  2337. alter_text: false
  2338. text: ''
  2339. make_link: false
  2340. path: ''
  2341. absolute: false
  2342. external: false
  2343. replace_spaces: false
  2344. path_case: none
  2345. trim_whitespace: false
  2346. alt: ''
  2347. rel: ''
  2348. link_class: ''
  2349. prefix: ''
  2350. suffix: ''
  2351. target: ''
  2352. nl2br: false
  2353. max_length: 0
  2354. word_boundary: true
  2355. ellipsis: true
  2356. more_link: false
  2357. more_link_text: ''
  2358. more_link_path: ''
  2359. strip_tags: false
  2360. trim: false
  2361. preserve_tags: ''
  2362. html: false
  2363. element_type: ''
  2364. element_class: ''
  2365. element_label_type: ''
  2366. element_label_class: ''
  2367. element_label_colon: true
  2368. element_wrapper_type: ''
  2369. element_wrapper_class: ''
  2370. element_default_classes: true
  2371. empty: ''
  2372. hide_empty: false
  2373. empty_zero: false
  2374. hide_alter_empty: true
  2375. click_sort_column: target_id
  2376. type: image
  2377. settings:
  2378. image_link: ''
  2379. image_style: thumbnail
  2380. image_loading:
  2381. attribute: lazy
  2382. group_column: ''
  2383. group_columns: { }
  2384. group_rows: true
  2385. delta_limit: 1
  2386. delta_offset: 0
  2387. delta_reversed: false
  2388. delta_first_last: false
  2389. multi_type: separator
  2390. separator: ', '
  2391. field_api_classes: false
  2392. title:
  2393. id: title
  2394. table: node_field_data
  2395. field: title
  2396. entity_type: node
  2397. entity_field: title
  2398. plugin_id: field
  2399. label: Titre
  2400. exclude: false
  2401. alter:
  2402. alter_text: false
  2403. element_class: ''
  2404. element_default_classes: true
  2405. empty: ''
  2406. hide_empty: false
  2407. empty_zero: false
  2408. hide_alter_empty: true
  2409. type: string
  2410. settings:
  2411. link_to_entity: true
  2412. field_type_de_projet:
  2413. id: field_type_de_projet
  2414. table: node__field_type_de_projet
  2415. field: field_type_de_projet
  2416. relationship: none
  2417. group_type: group
  2418. admin_label: ''
  2419. plugin_id: field
  2420. label: 'Type de projet'
  2421. exclude: false
  2422. alter:
  2423. alter_text: false
  2424. text: ''
  2425. make_link: false
  2426. path: ''
  2427. absolute: false
  2428. external: false
  2429. replace_spaces: false
  2430. path_case: none
  2431. trim_whitespace: false
  2432. alt: ''
  2433. rel: ''
  2434. link_class: ''
  2435. prefix: ''
  2436. suffix: ''
  2437. target: ''
  2438. nl2br: false
  2439. max_length: 0
  2440. word_boundary: true
  2441. ellipsis: true
  2442. more_link: false
  2443. more_link_text: ''
  2444. more_link_path: ''
  2445. strip_tags: false
  2446. trim: false
  2447. preserve_tags: ''
  2448. html: false
  2449. element_type: ''
  2450. element_class: ''
  2451. element_label_type: ''
  2452. element_label_class: ''
  2453. element_label_colon: true
  2454. element_wrapper_type: ''
  2455. element_wrapper_class: ''
  2456. element_default_classes: true
  2457. empty: ''
  2458. hide_empty: false
  2459. empty_zero: false
  2460. hide_alter_empty: true
  2461. click_sort_column: value
  2462. type: list_default
  2463. settings: { }
  2464. group_column: value
  2465. group_columns: { }
  2466. group_rows: true
  2467. delta_limit: 0
  2468. delta_offset: 0
  2469. delta_reversed: false
  2470. delta_first_last: false
  2471. multi_type: separator
  2472. separator: ', '
  2473. field_api_classes: false
  2474. operations:
  2475. id: operations
  2476. table: node
  2477. field: operations
  2478. relationship: none
  2479. group_type: group
  2480. admin_label: ''
  2481. plugin_id: entity_operations
  2482. label: Actions
  2483. exclude: false
  2484. alter:
  2485. alter_text: false
  2486. text: ''
  2487. make_link: false
  2488. path: ''
  2489. absolute: false
  2490. external: false
  2491. replace_spaces: false
  2492. path_case: none
  2493. trim_whitespace: false
  2494. alt: ''
  2495. rel: ''
  2496. link_class: ''
  2497. prefix: ''
  2498. suffix: ''
  2499. target: ''
  2500. nl2br: false
  2501. max_length: 0
  2502. word_boundary: true
  2503. ellipsis: true
  2504. more_link: false
  2505. more_link_text: ''
  2506. more_link_path: ''
  2507. strip_tags: false
  2508. trim: false
  2509. preserve_tags: ''
  2510. html: false
  2511. element_type: ''
  2512. element_class: ''
  2513. element_label_type: ''
  2514. element_label_class: ''
  2515. element_label_colon: true
  2516. element_wrapper_type: ''
  2517. element_wrapper_class: ''
  2518. element_default_classes: true
  2519. empty: ''
  2520. hide_empty: false
  2521. empty_zero: false
  2522. hide_alter_empty: true
  2523. destination: true
  2524. field_programme:
  2525. id: field_programme
  2526. table: node__field_programme
  2527. field: field_programme
  2528. relationship: none
  2529. group_type: group
  2530. admin_label: ''
  2531. plugin_id: field
  2532. label: 'Programme Popsu'
  2533. exclude: false
  2534. alter:
  2535. alter_text: false
  2536. text: ''
  2537. make_link: false
  2538. path: ''
  2539. absolute: false
  2540. external: false
  2541. replace_spaces: false
  2542. path_case: none
  2543. trim_whitespace: false
  2544. alt: ''
  2545. rel: ''
  2546. link_class: ''
  2547. prefix: ''
  2548. suffix: ''
  2549. target: ''
  2550. nl2br: false
  2551. max_length: 0
  2552. word_boundary: true
  2553. ellipsis: true
  2554. more_link: false
  2555. more_link_text: ''
  2556. more_link_path: ''
  2557. strip_tags: false
  2558. trim: false
  2559. preserve_tags: ''
  2560. html: false
  2561. element_type: ''
  2562. element_class: ''
  2563. element_label_type: ''
  2564. element_label_class: ''
  2565. element_label_colon: true
  2566. element_wrapper_type: ''
  2567. element_wrapper_class: ''
  2568. element_default_classes: true
  2569. empty: ''
  2570. hide_empty: false
  2571. empty_zero: false
  2572. hide_alter_empty: true
  2573. click_sort_column: target_id
  2574. type: entity_reference_label
  2575. settings:
  2576. link: true
  2577. group_column: target_id
  2578. group_columns: { }
  2579. group_rows: true
  2580. delta_limit: 0
  2581. delta_offset: 0
  2582. delta_reversed: false
  2583. delta_first_last: false
  2584. multi_type: separator
  2585. separator: ', '
  2586. field_api_classes: false
  2587. field_ville:
  2588. id: field_ville
  2589. table: node__field_ville
  2590. field: field_ville
  2591. relationship: none
  2592. group_type: group
  2593. admin_label: ''
  2594. plugin_id: field
  2595. label: Ville
  2596. exclude: false
  2597. alter:
  2598. alter_text: false
  2599. text: ''
  2600. make_link: false
  2601. path: ''
  2602. absolute: false
  2603. external: false
  2604. replace_spaces: false
  2605. path_case: none
  2606. trim_whitespace: false
  2607. alt: ''
  2608. rel: ''
  2609. link_class: ''
  2610. prefix: ''
  2611. suffix: ''
  2612. target: ''
  2613. nl2br: false
  2614. max_length: 0
  2615. word_boundary: true
  2616. ellipsis: true
  2617. more_link: false
  2618. more_link_text: ''
  2619. more_link_path: ''
  2620. strip_tags: false
  2621. trim: false
  2622. preserve_tags: ''
  2623. html: false
  2624. element_type: ''
  2625. element_class: ''
  2626. element_label_type: ''
  2627. element_label_class: ''
  2628. element_label_colon: true
  2629. element_wrapper_type: ''
  2630. element_wrapper_class: ''
  2631. element_default_classes: true
  2632. empty: ''
  2633. hide_empty: false
  2634. empty_zero: false
  2635. hide_alter_empty: true
  2636. click_sort_column: target_id
  2637. type: entity_reference_label
  2638. settings:
  2639. link: true
  2640. group_column: target_id
  2641. group_columns: { }
  2642. group_rows: true
  2643. delta_limit: 0
  2644. delta_offset: 0
  2645. delta_reversed: false
  2646. delta_first_last: false
  2647. multi_type: separator
  2648. separator: ', '
  2649. field_api_classes: false
  2650. field_projets_lies:
  2651. id: field_projets_lies
  2652. table: node__field_projets_lies
  2653. field: field_projets_lies
  2654. relationship: none
  2655. group_type: group
  2656. admin_label: ''
  2657. plugin_id: field
  2658. label: 'Projets liés'
  2659. exclude: false
  2660. alter:
  2661. alter_text: false
  2662. text: ''
  2663. make_link: false
  2664. path: ''
  2665. absolute: false
  2666. external: false
  2667. replace_spaces: false
  2668. path_case: none
  2669. trim_whitespace: false
  2670. alt: ''
  2671. rel: ''
  2672. link_class: ''
  2673. prefix: ''
  2674. suffix: ''
  2675. target: ''
  2676. nl2br: false
  2677. max_length: 0
  2678. word_boundary: true
  2679. ellipsis: true
  2680. more_link: false
  2681. more_link_text: ''
  2682. more_link_path: ''
  2683. strip_tags: false
  2684. trim: false
  2685. preserve_tags: ''
  2686. html: false
  2687. element_type: ''
  2688. element_class: ''
  2689. element_label_type: ''
  2690. element_label_class: ''
  2691. element_label_colon: true
  2692. element_wrapper_type: ''
  2693. element_wrapper_class: ''
  2694. element_default_classes: true
  2695. empty: ''
  2696. hide_empty: false
  2697. empty_zero: false
  2698. hide_alter_empty: true
  2699. click_sort_column: target_id
  2700. type: entity_reference_label
  2701. settings:
  2702. link: true
  2703. group_column: target_id
  2704. group_columns: { }
  2705. group_rows: true
  2706. delta_limit: 0
  2707. delta_offset: 0
  2708. delta_reversed: false
  2709. delta_first_last: false
  2710. multi_type: ul
  2711. separator: ', '
  2712. field_api_classes: false
  2713. field_themes_lies:
  2714. id: field_themes_lies
  2715. table: node__field_themes_lies
  2716. field: field_themes_lies
  2717. relationship: none
  2718. group_type: group
  2719. admin_label: ''
  2720. plugin_id: field
  2721. label: 'Thèmes liés'
  2722. exclude: false
  2723. alter:
  2724. alter_text: false
  2725. text: ''
  2726. make_link: false
  2727. path: ''
  2728. absolute: false
  2729. external: false
  2730. replace_spaces: false
  2731. path_case: none
  2732. trim_whitespace: false
  2733. alt: ''
  2734. rel: ''
  2735. link_class: ''
  2736. prefix: ''
  2737. suffix: ''
  2738. target: ''
  2739. nl2br: false
  2740. max_length: 0
  2741. word_boundary: true
  2742. ellipsis: true
  2743. more_link: false
  2744. more_link_text: ''
  2745. more_link_path: ''
  2746. strip_tags: false
  2747. trim: false
  2748. preserve_tags: ''
  2749. html: false
  2750. element_type: ''
  2751. element_class: ''
  2752. element_label_type: ''
  2753. element_label_class: ''
  2754. element_label_colon: true
  2755. element_wrapper_type: ''
  2756. element_wrapper_class: ''
  2757. element_default_classes: true
  2758. empty: ''
  2759. hide_empty: false
  2760. empty_zero: false
  2761. hide_alter_empty: true
  2762. click_sort_column: target_id
  2763. type: entity_reference_label
  2764. settings:
  2765. link: true
  2766. group_column: target_id
  2767. group_columns: { }
  2768. group_rows: true
  2769. delta_limit: 0
  2770. delta_offset: 0
  2771. delta_reversed: false
  2772. delta_first_last: false
  2773. multi_type: ul
  2774. separator: ', '
  2775. field_api_classes: false
  2776. field_comparatifs_associes:
  2777. id: field_comparatifs_associes
  2778. table: node__field_comparatifs_associes
  2779. field: field_comparatifs_associes
  2780. relationship: none
  2781. group_type: group
  2782. admin_label: ''
  2783. plugin_id: field
  2784. label: 'Comparatifs associés'
  2785. exclude: false
  2786. alter:
  2787. alter_text: false
  2788. text: ''
  2789. make_link: false
  2790. path: ''
  2791. absolute: false
  2792. external: false
  2793. replace_spaces: false
  2794. path_case: none
  2795. trim_whitespace: false
  2796. alt: ''
  2797. rel: ''
  2798. link_class: ''
  2799. prefix: ''
  2800. suffix: ''
  2801. target: ''
  2802. nl2br: false
  2803. max_length: 0
  2804. word_boundary: true
  2805. ellipsis: true
  2806. more_link: false
  2807. more_link_text: ''
  2808. more_link_path: ''
  2809. strip_tags: false
  2810. trim: false
  2811. preserve_tags: ''
  2812. html: false
  2813. element_type: ''
  2814. element_class: ''
  2815. element_label_type: ''
  2816. element_label_class: ''
  2817. element_label_colon: true
  2818. element_wrapper_type: ''
  2819. element_wrapper_class: ''
  2820. element_default_classes: true
  2821. empty: ''
  2822. hide_empty: false
  2823. empty_zero: false
  2824. hide_alter_empty: true
  2825. click_sort_column: target_id
  2826. type: entity_reference_label
  2827. settings:
  2828. link: true
  2829. group_column: target_id
  2830. group_columns: { }
  2831. group_rows: true
  2832. delta_limit: 0
  2833. delta_offset: 0
  2834. delta_reversed: false
  2835. delta_first_last: false
  2836. multi_type: ul
  2837. separator: ', '
  2838. field_api_classes: false
  2839. field_partenaires:
  2840. id: field_partenaires
  2841. table: node__field_partenaires
  2842. field: field_partenaires
  2843. relationship: none
  2844. group_type: group
  2845. admin_label: ''
  2846. plugin_id: field
  2847. label: Partenaires
  2848. exclude: false
  2849. alter:
  2850. alter_text: false
  2851. text: ''
  2852. make_link: false
  2853. path: ''
  2854. absolute: false
  2855. external: false
  2856. replace_spaces: false
  2857. path_case: none
  2858. trim_whitespace: false
  2859. alt: ''
  2860. rel: ''
  2861. link_class: ''
  2862. prefix: ''
  2863. suffix: ''
  2864. target: ''
  2865. nl2br: false
  2866. max_length: 0
  2867. word_boundary: true
  2868. ellipsis: true
  2869. more_link: false
  2870. more_link_text: ''
  2871. more_link_path: ''
  2872. strip_tags: false
  2873. trim: false
  2874. preserve_tags: ''
  2875. html: false
  2876. element_type: ''
  2877. element_class: ''
  2878. element_label_type: ''
  2879. element_label_class: ''
  2880. element_label_colon: true
  2881. element_wrapper_type: ''
  2882. element_wrapper_class: ''
  2883. element_default_classes: true
  2884. empty: ''
  2885. hide_empty: false
  2886. empty_zero: false
  2887. hide_alter_empty: true
  2888. click_sort_column: target_id
  2889. type: entity_reference_revisions_entity_view
  2890. settings:
  2891. view_mode: admin
  2892. group_column: ''
  2893. group_columns: { }
  2894. group_rows: true
  2895. delta_limit: 0
  2896. delta_offset: 0
  2897. delta_reversed: false
  2898. delta_first_last: false
  2899. multi_type: ul
  2900. separator: ', '
  2901. field_api_classes: false
  2902. status:
  2903. id: status
  2904. table: node_field_data
  2905. field: status
  2906. entity_type: node
  2907. entity_field: status
  2908. plugin_id: field
  2909. label: État
  2910. exclude: false
  2911. alter:
  2912. alter_text: false
  2913. element_class: ''
  2914. element_default_classes: true
  2915. empty: ''
  2916. hide_empty: false
  2917. empty_zero: false
  2918. hide_alter_empty: true
  2919. type: boolean
  2920. settings:
  2921. format: custom
  2922. format_custom_false: 'Non publié'
  2923. format_custom_true: Publié
  2924. changed:
  2925. id: changed
  2926. table: node_field_data
  2927. field: changed
  2928. entity_type: node
  2929. entity_field: changed
  2930. plugin_id: field
  2931. label: 'Mis à jour'
  2932. exclude: false
  2933. alter:
  2934. alter_text: false
  2935. element_class: ''
  2936. element_default_classes: true
  2937. empty: ''
  2938. hide_empty: false
  2939. empty_zero: false
  2940. hide_alter_empty: true
  2941. type: timestamp
  2942. settings:
  2943. date_format: short
  2944. custom_date_format: ''
  2945. timezone: ''
  2946. field_memo:
  2947. id: field_memo
  2948. table: node__field_memo
  2949. field: field_memo
  2950. relationship: none
  2951. group_type: group
  2952. admin_label: ''
  2953. plugin_id: field
  2954. label: memo
  2955. exclude: false
  2956. alter:
  2957. alter_text: false
  2958. text: ''
  2959. make_link: false
  2960. path: ''
  2961. absolute: false
  2962. external: false
  2963. replace_spaces: false
  2964. path_case: none
  2965. trim_whitespace: false
  2966. alt: ''
  2967. rel: ''
  2968. link_class: ''
  2969. prefix: ''
  2970. suffix: ''
  2971. target: ''
  2972. nl2br: false
  2973. max_length: 0
  2974. word_boundary: true
  2975. ellipsis: true
  2976. more_link: false
  2977. more_link_text: ''
  2978. more_link_path: ''
  2979. strip_tags: false
  2980. trim: false
  2981. preserve_tags: ''
  2982. html: false
  2983. element_type: ''
  2984. element_class: ''
  2985. element_label_type: ''
  2986. element_label_class: ''
  2987. element_label_colon: true
  2988. element_wrapper_type: ''
  2989. element_wrapper_class: ''
  2990. element_default_classes: true
  2991. empty: ''
  2992. hide_empty: false
  2993. empty_zero: false
  2994. hide_alter_empty: true
  2995. click_sort_column: value
  2996. type: basic_string
  2997. settings: { }
  2998. group_column: value
  2999. group_columns: { }
  3000. group_rows: true
  3001. delta_limit: 0
  3002. delta_offset: 0
  3003. delta_reversed: false
  3004. delta_first_last: false
  3005. multi_type: separator
  3006. separator: ', '
  3007. field_api_classes: false
  3008. field_actif:
  3009. id: field_actif
  3010. table: node__field_actif
  3011. field: field_actif
  3012. relationship: none
  3013. group_type: group
  3014. admin_label: ''
  3015. plugin_id: field
  3016. label: Actif
  3017. exclude: false
  3018. alter:
  3019. alter_text: false
  3020. text: ''
  3021. make_link: false
  3022. path: ''
  3023. absolute: false
  3024. external: false
  3025. replace_spaces: false
  3026. path_case: none
  3027. trim_whitespace: false
  3028. alt: ''
  3029. rel: ''
  3030. link_class: ''
  3031. prefix: ''
  3032. suffix: ''
  3033. target: ''
  3034. nl2br: false
  3035. max_length: 0
  3036. word_boundary: true
  3037. ellipsis: true
  3038. more_link: false
  3039. more_link_text: ''
  3040. more_link_path: ''
  3041. strip_tags: false
  3042. trim: false
  3043. preserve_tags: ''
  3044. html: false
  3045. element_type: ''
  3046. element_class: ''
  3047. element_label_type: ''
  3048. element_label_class: ''
  3049. element_label_colon: true
  3050. element_wrapper_type: ''
  3051. element_wrapper_class: ''
  3052. element_default_classes: true
  3053. empty: ''
  3054. hide_empty: false
  3055. empty_zero: false
  3056. hide_alter_empty: true
  3057. click_sort_column: value
  3058. type: boolean
  3059. settings:
  3060. format: yes-no
  3061. format_custom_false: ''
  3062. format_custom_true: ''
  3063. group_column: value
  3064. group_columns: { }
  3065. group_rows: true
  3066. delta_limit: 0
  3067. delta_offset: 0
  3068. delta_reversed: false
  3069. delta_first_last: false
  3070. multi_type: separator
  3071. separator: ', '
  3072. field_api_classes: false
  3073. filters:
  3074. title:
  3075. id: title
  3076. table: node_field_data
  3077. field: title
  3078. relationship: none
  3079. group_type: group
  3080. admin_label: ''
  3081. entity_type: node
  3082. entity_field: title
  3083. plugin_id: string
  3084. operator: contains
  3085. value: ''
  3086. group: 1
  3087. exposed: true
  3088. expose:
  3089. operator_id: title_op
  3090. label: Titre
  3091. description: ''
  3092. use_operator: false
  3093. operator: title_op
  3094. operator_limit_selection: false
  3095. operator_list: { }
  3096. identifier: title
  3097. required: false
  3098. remember: false
  3099. multiple: false
  3100. remember_roles:
  3101. authenticated: authenticated
  3102. anonymous: '0'
  3103. administrator: '0'
  3104. is_grouped: false
  3105. group_info:
  3106. label: ''
  3107. description: ''
  3108. identifier: ''
  3109. optional: true
  3110. widget: select
  3111. multiple: false
  3112. remember: false
  3113. default_group: All
  3114. default_group_multiple: { }
  3115. group_items: { }
  3116. type:
  3117. id: type
  3118. table: node_field_data
  3119. field: type
  3120. relationship: none
  3121. group_type: group
  3122. admin_label: ''
  3123. entity_type: node
  3124. entity_field: type
  3125. plugin_id: bundle
  3126. operator: in
  3127. value:
  3128. projet: projet
  3129. group: 1
  3130. exposed: false
  3131. expose:
  3132. operator_id: type_op
  3133. label: 'Type de contenu'
  3134. description: ''
  3135. use_operator: false
  3136. operator: type_op
  3137. operator_limit_selection: false
  3138. operator_list: { }
  3139. identifier: type
  3140. required: false
  3141. remember: false
  3142. multiple: false
  3143. remember_roles:
  3144. authenticated: authenticated
  3145. anonymous: '0'
  3146. administrator: '0'
  3147. reduce: false
  3148. is_grouped: false
  3149. group_info:
  3150. label: ''
  3151. description: ''
  3152. identifier: ''
  3153. optional: true
  3154. widget: select
  3155. multiple: false
  3156. remember: false
  3157. default_group: All
  3158. default_group_multiple: { }
  3159. group_items: { }
  3160. status:
  3161. id: status
  3162. table: node_field_data
  3163. field: status
  3164. relationship: none
  3165. group_type: group
  3166. admin_label: ''
  3167. entity_type: node
  3168. entity_field: status
  3169. plugin_id: boolean
  3170. operator: '='
  3171. value: '1'
  3172. group: 1
  3173. exposed: true
  3174. expose:
  3175. operator_id: ''
  3176. label: État
  3177. description: ''
  3178. use_operator: false
  3179. operator: status_op
  3180. operator_limit_selection: false
  3181. operator_list: { }
  3182. identifier: status
  3183. required: false
  3184. remember: false
  3185. multiple: false
  3186. remember_roles:
  3187. authenticated: authenticated
  3188. is_grouped: true
  3189. group_info:
  3190. label: 'Statut de publication'
  3191. description: ''
  3192. identifier: status
  3193. optional: true
  3194. widget: select
  3195. multiple: false
  3196. remember: false
  3197. default_group: All
  3198. default_group_multiple: { }
  3199. group_items:
  3200. 1:
  3201. title: Publié
  3202. operator: '='
  3203. value: '1'
  3204. 2:
  3205. title: 'Non publié'
  3206. operator: '='
  3207. value: '0'
  3208. status_extra:
  3209. id: status_extra
  3210. table: node_field_data
  3211. field: status_extra
  3212. entity_type: node
  3213. plugin_id: node_status
  3214. operator: '='
  3215. value: false
  3216. group: 1
  3217. expose:
  3218. operator_limit_selection: false
  3219. operator_list: { }
  3220. field_ville_target_id:
  3221. id: field_ville_target_id
  3222. table: node__field_ville
  3223. field: field_ville_target_id
  3224. relationship: none
  3225. group_type: group
  3226. admin_label: ''
  3227. plugin_id: taxonomy_index_tid
  3228. operator: or
  3229. value: { }
  3230. group: 1
  3231. exposed: true
  3232. expose:
  3233. operator_id: field_ville_target_id_op
  3234. label: Ville
  3235. description: ''
  3236. use_operator: false
  3237. operator: field_ville_target_id_op
  3238. operator_limit_selection: false
  3239. operator_list: { }
  3240. identifier: field_ville_target_id
  3241. required: false
  3242. remember: false
  3243. multiple: false
  3244. remember_roles:
  3245. authenticated: authenticated
  3246. anonymous: '0'
  3247. admin: '0'
  3248. root: '0'
  3249. user: '0'
  3250. editeur: '0'
  3251. reduce: false
  3252. is_grouped: false
  3253. group_info:
  3254. label: ''
  3255. description: ''
  3256. identifier: ''
  3257. optional: true
  3258. widget: select
  3259. multiple: false
  3260. remember: false
  3261. default_group: All
  3262. default_group_multiple: { }
  3263. group_items: { }
  3264. reduce_duplicates: false
  3265. vid: villes
  3266. type: textfield
  3267. hierarchy: false
  3268. limit: true
  3269. error_message: true
  3270. save_lineage: false
  3271. force_deepest: false
  3272. parent: 0
  3273. level_labels: ''
  3274. hierarchy_depth: 0
  3275. required_depth: 0
  3276. field_memo_value:
  3277. id: field_memo_value
  3278. table: node__field_memo
  3279. field: field_memo_value
  3280. relationship: none
  3281. group_type: group
  3282. admin_label: ''
  3283. plugin_id: string
  3284. operator: contains
  3285. value: ''
  3286. group: 1
  3287. exposed: true
  3288. expose:
  3289. operator_id: field_memo_value_op
  3290. label: memo
  3291. description: ''
  3292. use_operator: false
  3293. operator: field_memo_value_op
  3294. operator_limit_selection: false
  3295. operator_list: { }
  3296. identifier: field_memo_value
  3297. required: false
  3298. remember: false
  3299. multiple: false
  3300. remember_roles:
  3301. authenticated: authenticated
  3302. anonymous: '0'
  3303. admin: '0'
  3304. root: '0'
  3305. user: '0'
  3306. editeur: '0'
  3307. placeholder: ''
  3308. is_grouped: false
  3309. group_info:
  3310. label: ''
  3311. description: ''
  3312. identifier: ''
  3313. optional: true
  3314. widget: select
  3315. multiple: false
  3316. remember: false
  3317. default_group: All
  3318. default_group_multiple: { }
  3319. group_items: { }
  3320. field_programme_target_id:
  3321. id: field_programme_target_id
  3322. table: node__field_programme
  3323. field: field_programme_target_id
  3324. relationship: none
  3325. group_type: group
  3326. admin_label: ''
  3327. plugin_id: entity_reference
  3328. operator: or
  3329. value: { }
  3330. group: 1
  3331. exposed: true
  3332. expose:
  3333. operator_id: field_programme_target_id_op
  3334. label: Programme
  3335. description: ''
  3336. use_operator: false
  3337. operator: field_programme_target_id_op
  3338. operator_limit_selection: false
  3339. operator_list: { }
  3340. identifier: field_programme_target_id
  3341. required: false
  3342. remember: false
  3343. multiple: false
  3344. remember_roles:
  3345. authenticated: authenticated
  3346. anonymous: '0'
  3347. admin: '0'
  3348. root: '0'
  3349. user: '0'
  3350. editeur: '0'
  3351. reduce: false
  3352. is_grouped: false
  3353. group_info:
  3354. label: ''
  3355. description: ''
  3356. identifier: ''
  3357. optional: true
  3358. widget: select
  3359. multiple: false
  3360. remember: false
  3361. default_group: All
  3362. default_group_multiple: { }
  3363. group_items: { }
  3364. reduce_duplicates: false
  3365. handler: 'default:node'
  3366. widget: select
  3367. handler_settings:
  3368. target_bundles:
  3369. programme: programme
  3370. sort:
  3371. field: _none
  3372. direction: ASC
  3373. auto_create: false
  3374. auto_create_bundle: ''
  3375. field_type_de_projet_value:
  3376. id: field_type_de_projet_value
  3377. table: node__field_type_de_projet
  3378. field: field_type_de_projet_value
  3379. relationship: none
  3380. group_type: group
  3381. admin_label: ''
  3382. plugin_id: list_field
  3383. operator: or
  3384. value: { }
  3385. group: 1
  3386. exposed: true
  3387. expose:
  3388. operator_id: field_type_de_projet_value_op
  3389. label: 'Type de projet'
  3390. description: ''
  3391. use_operator: true
  3392. operator: field_type_de_projet_value_op
  3393. operator_limit_selection: true
  3394. operator_list:
  3395. or: or
  3396. empty: empty
  3397. identifier: field_type_de_projet_value
  3398. required: false
  3399. remember: false
  3400. multiple: false
  3401. remember_roles:
  3402. authenticated: authenticated
  3403. anonymous: '0'
  3404. admin: '0'
  3405. root: '0'
  3406. user: '0'
  3407. editeur: '0'
  3408. reduce: false
  3409. is_grouped: false
  3410. group_info:
  3411. label: ''
  3412. description: ''
  3413. identifier: ''
  3414. optional: true
  3415. widget: select
  3416. multiple: false
  3417. remember: false
  3418. default_group: All
  3419. default_group_multiple: { }
  3420. group_items: { }
  3421. reduce_duplicates: false
  3422. filter_groups:
  3423. operator: AND
  3424. groups:
  3425. 1: AND
  3426. defaults:
  3427. title: false
  3428. fields: false
  3429. filters: false
  3430. filter_groups: false
  3431. display_description: ''
  3432. display_extenders:
  3433. views_ef_fieldset: { }
  3434. path: admin/content/projets
  3435. menu:
  3436. type: tab
  3437. title: Projets
  3438. description: ''
  3439. weight: -10
  3440. expanded: false
  3441. menu_name: admin
  3442. parent: system.admin_content
  3443. context: '0'
  3444. tab_options:
  3445. type: normal
  3446. title: Contenu
  3447. description: 'Trouver et gérer le contenu'
  3448. weight: -10
  3449. menu_name: admin
  3450. cache_metadata:
  3451. max-age: 0
  3452. contexts:
  3453. - 'languages:language_content'
  3454. - 'languages:language_interface'
  3455. - url
  3456. - url.query_args
  3457. - user
  3458. - 'user.node_grants:view'
  3459. - user.permissions
  3460. tags:
  3461. - 'config:field.storage.node.field_actif'
  3462. - 'config:field.storage.node.field_comparatifs_associes'
  3463. - 'config:field.storage.node.field_diaporama'
  3464. - 'config:field.storage.node.field_memo'
  3465. - 'config:field.storage.node.field_partenaires'
  3466. - 'config:field.storage.node.field_programme'
  3467. - 'config:field.storage.node.field_projets_lies'
  3468. - 'config:field.storage.node.field_themes_lies'
  3469. - 'config:field.storage.node.field_type_de_projet'
  3470. - 'config:field.storage.node.field_ville'
  3471. page_4:
  3472. id: page_4
  3473. display_title: Statiques
  3474. display_plugin: page
  3475. position: 1
  3476. display_options:
  3477. title: 'Statiques & Iframe'
  3478. fields:
  3479. node_bulk_form:
  3480. id: node_bulk_form
  3481. table: node
  3482. field: node_bulk_form
  3483. entity_type: node
  3484. plugin_id: node_bulk_form
  3485. label: ''
  3486. exclude: false
  3487. alter:
  3488. alter_text: false
  3489. element_class: ''
  3490. element_default_classes: true
  3491. empty: ''
  3492. hide_empty: false
  3493. empty_zero: false
  3494. hide_alter_empty: true
  3495. title:
  3496. id: title
  3497. table: node_field_data
  3498. field: title
  3499. entity_type: node
  3500. entity_field: title
  3501. plugin_id: field
  3502. label: Titre
  3503. exclude: false
  3504. alter:
  3505. alter_text: false
  3506. element_class: ''
  3507. element_default_classes: true
  3508. empty: ''
  3509. hide_empty: false
  3510. empty_zero: false
  3511. hide_alter_empty: true
  3512. type: string
  3513. settings:
  3514. link_to_entity: true
  3515. operations:
  3516. id: operations
  3517. table: node
  3518. field: operations
  3519. relationship: none
  3520. group_type: group
  3521. admin_label: ''
  3522. plugin_id: entity_operations
  3523. label: Actions
  3524. exclude: false
  3525. alter:
  3526. alter_text: false
  3527. text: ''
  3528. make_link: false
  3529. path: ''
  3530. absolute: false
  3531. external: false
  3532. replace_spaces: false
  3533. path_case: none
  3534. trim_whitespace: false
  3535. alt: ''
  3536. rel: ''
  3537. link_class: ''
  3538. prefix: ''
  3539. suffix: ''
  3540. target: ''
  3541. nl2br: false
  3542. max_length: 0
  3543. word_boundary: true
  3544. ellipsis: true
  3545. more_link: false
  3546. more_link_text: ''
  3547. more_link_path: ''
  3548. strip_tags: false
  3549. trim: false
  3550. preserve_tags: ''
  3551. html: false
  3552. element_type: ''
  3553. element_class: ''
  3554. element_label_type: ''
  3555. element_label_class: ''
  3556. element_label_colon: true
  3557. element_wrapper_type: ''
  3558. element_wrapper_class: ''
  3559. element_default_classes: true
  3560. empty: ''
  3561. hide_empty: false
  3562. empty_zero: false
  3563. hide_alter_empty: true
  3564. destination: true
  3565. field_partenaires:
  3566. id: field_partenaires
  3567. table: node__field_partenaires
  3568. field: field_partenaires
  3569. relationship: none
  3570. group_type: group
  3571. admin_label: ''
  3572. plugin_id: field
  3573. label: Partenaires
  3574. exclude: false
  3575. alter:
  3576. alter_text: false
  3577. text: ''
  3578. make_link: false
  3579. path: ''
  3580. absolute: false
  3581. external: false
  3582. replace_spaces: false
  3583. path_case: none
  3584. trim_whitespace: false
  3585. alt: ''
  3586. rel: ''
  3587. link_class: ''
  3588. prefix: ''
  3589. suffix: ''
  3590. target: ''
  3591. nl2br: false
  3592. max_length: 0
  3593. word_boundary: true
  3594. ellipsis: true
  3595. more_link: false
  3596. more_link_text: ''
  3597. more_link_path: ''
  3598. strip_tags: false
  3599. trim: false
  3600. preserve_tags: ''
  3601. html: false
  3602. element_type: ''
  3603. element_class: ''
  3604. element_label_type: ''
  3605. element_label_class: ''
  3606. element_label_colon: true
  3607. element_wrapper_type: ''
  3608. element_wrapper_class: ''
  3609. element_default_classes: true
  3610. empty: ''
  3611. hide_empty: false
  3612. empty_zero: false
  3613. hide_alter_empty: true
  3614. click_sort_column: target_id
  3615. type: entity_reference_revisions_entity_view
  3616. settings:
  3617. view_mode: admin
  3618. group_column: ''
  3619. group_columns: { }
  3620. group_rows: true
  3621. delta_limit: 0
  3622. delta_offset: 0
  3623. delta_reversed: false
  3624. delta_first_last: false
  3625. multi_type: ul
  3626. separator: ', '
  3627. field_api_classes: false
  3628. status:
  3629. id: status
  3630. table: node_field_data
  3631. field: status
  3632. entity_type: node
  3633. entity_field: status
  3634. plugin_id: field
  3635. label: État
  3636. exclude: false
  3637. alter:
  3638. alter_text: false
  3639. element_class: ''
  3640. element_default_classes: true
  3641. empty: ''
  3642. hide_empty: false
  3643. empty_zero: false
  3644. hide_alter_empty: true
  3645. type: boolean
  3646. settings:
  3647. format: custom
  3648. format_custom_false: 'Non publié'
  3649. format_custom_true: Publié
  3650. changed:
  3651. id: changed
  3652. table: node_field_data
  3653. field: changed
  3654. entity_type: node
  3655. entity_field: changed
  3656. plugin_id: field
  3657. label: 'Mis à jour'
  3658. exclude: false
  3659. alter:
  3660. alter_text: false
  3661. element_class: ''
  3662. element_default_classes: true
  3663. empty: ''
  3664. hide_empty: false
  3665. empty_zero: false
  3666. hide_alter_empty: true
  3667. type: timestamp
  3668. settings:
  3669. date_format: short
  3670. custom_date_format: ''
  3671. timezone: ''
  3672. field_memo:
  3673. id: field_memo
  3674. table: node__field_memo
  3675. field: field_memo
  3676. relationship: none
  3677. group_type: group
  3678. admin_label: ''
  3679. plugin_id: field
  3680. label: memo
  3681. exclude: false
  3682. alter:
  3683. alter_text: false
  3684. text: ''
  3685. make_link: false
  3686. path: ''
  3687. absolute: false
  3688. external: false
  3689. replace_spaces: false
  3690. path_case: none
  3691. trim_whitespace: false
  3692. alt: ''
  3693. rel: ''
  3694. link_class: ''
  3695. prefix: ''
  3696. suffix: ''
  3697. target: ''
  3698. nl2br: false
  3699. max_length: 0
  3700. word_boundary: true
  3701. ellipsis: true
  3702. more_link: false
  3703. more_link_text: ''
  3704. more_link_path: ''
  3705. strip_tags: false
  3706. trim: false
  3707. preserve_tags: ''
  3708. html: false
  3709. element_type: ''
  3710. element_class: ''
  3711. element_label_type: ''
  3712. element_label_class: ''
  3713. element_label_colon: true
  3714. element_wrapper_type: ''
  3715. element_wrapper_class: ''
  3716. element_default_classes: true
  3717. empty: ''
  3718. hide_empty: false
  3719. empty_zero: false
  3720. hide_alter_empty: true
  3721. click_sort_column: value
  3722. type: basic_string
  3723. settings: { }
  3724. group_column: value
  3725. group_columns: { }
  3726. group_rows: true
  3727. delta_limit: 0
  3728. delta_offset: 0
  3729. delta_reversed: false
  3730. delta_first_last: false
  3731. multi_type: separator
  3732. separator: ', '
  3733. field_api_classes: false
  3734. filters:
  3735. title:
  3736. id: title
  3737. table: node_field_data
  3738. field: title
  3739. relationship: none
  3740. group_type: group
  3741. admin_label: ''
  3742. entity_type: node
  3743. entity_field: title
  3744. plugin_id: string
  3745. operator: contains
  3746. value: ''
  3747. group: 1
  3748. exposed: true
  3749. expose:
  3750. operator_id: title_op
  3751. label: Titre
  3752. description: ''
  3753. use_operator: false
  3754. operator: title_op
  3755. operator_limit_selection: false
  3756. operator_list: { }
  3757. identifier: title
  3758. required: false
  3759. remember: false
  3760. multiple: false
  3761. remember_roles:
  3762. authenticated: authenticated
  3763. anonymous: '0'
  3764. administrator: '0'
  3765. is_grouped: false
  3766. group_info:
  3767. label: ''
  3768. description: ''
  3769. identifier: ''
  3770. optional: true
  3771. widget: select
  3772. multiple: false
  3773. remember: false
  3774. default_group: All
  3775. default_group_multiple: { }
  3776. group_items: { }
  3777. type:
  3778. id: type
  3779. table: node_field_data
  3780. field: type
  3781. relationship: none
  3782. group_type: group
  3783. admin_label: ''
  3784. entity_type: node
  3785. entity_field: type
  3786. plugin_id: bundle
  3787. operator: in
  3788. value:
  3789. iframe: iframe
  3790. static: static
  3791. group: 1
  3792. exposed: false
  3793. expose:
  3794. operator_id: type_op
  3795. label: 'Type de contenu'
  3796. description: ''
  3797. use_operator: false
  3798. operator: type_op
  3799. operator_limit_selection: false
  3800. operator_list: { }
  3801. identifier: type
  3802. required: false
  3803. remember: false
  3804. multiple: false
  3805. remember_roles:
  3806. authenticated: authenticated
  3807. anonymous: '0'
  3808. administrator: '0'
  3809. reduce: false
  3810. is_grouped: false
  3811. group_info:
  3812. label: ''
  3813. description: ''
  3814. identifier: ''
  3815. optional: true
  3816. widget: select
  3817. multiple: false
  3818. remember: false
  3819. default_group: All
  3820. default_group_multiple: { }
  3821. group_items: { }
  3822. status:
  3823. id: status
  3824. table: node_field_data
  3825. field: status
  3826. relationship: none
  3827. group_type: group
  3828. admin_label: ''
  3829. entity_type: node
  3830. entity_field: status
  3831. plugin_id: boolean
  3832. operator: '='
  3833. value: '1'
  3834. group: 1
  3835. exposed: true
  3836. expose:
  3837. operator_id: ''
  3838. label: État
  3839. description: ''
  3840. use_operator: false
  3841. operator: status_op
  3842. operator_limit_selection: false
  3843. operator_list: { }
  3844. identifier: status
  3845. required: false
  3846. remember: false
  3847. multiple: false
  3848. remember_roles:
  3849. authenticated: authenticated
  3850. is_grouped: true
  3851. group_info:
  3852. label: 'Statut de publication'
  3853. description: ''
  3854. identifier: status
  3855. optional: true
  3856. widget: select
  3857. multiple: false
  3858. remember: false
  3859. default_group: All
  3860. default_group_multiple: { }
  3861. group_items:
  3862. 1:
  3863. title: Publié
  3864. operator: '='
  3865. value: '1'
  3866. 2:
  3867. title: 'Non publié'
  3868. operator: '='
  3869. value: '0'
  3870. status_extra:
  3871. id: status_extra
  3872. table: node_field_data
  3873. field: status_extra
  3874. entity_type: node
  3875. plugin_id: node_status
  3876. operator: '='
  3877. value: false
  3878. group: 1
  3879. expose:
  3880. operator_limit_selection: false
  3881. operator_list: { }
  3882. field_memo_value:
  3883. id: field_memo_value
  3884. table: node__field_memo
  3885. field: field_memo_value
  3886. relationship: none
  3887. group_type: group
  3888. admin_label: ''
  3889. plugin_id: string
  3890. operator: contains
  3891. value: ''
  3892. group: 1
  3893. exposed: true
  3894. expose:
  3895. operator_id: field_memo_value_op
  3896. label: memo
  3897. description: ''
  3898. use_operator: false
  3899. operator: field_memo_value_op
  3900. operator_limit_selection: false
  3901. operator_list: { }
  3902. identifier: field_memo_value
  3903. required: false
  3904. remember: false
  3905. multiple: false
  3906. remember_roles:
  3907. authenticated: authenticated
  3908. anonymous: '0'
  3909. admin: '0'
  3910. root: '0'
  3911. user: '0'
  3912. editeur: '0'
  3913. placeholder: ''
  3914. is_grouped: false
  3915. group_info:
  3916. label: ''
  3917. description: ''
  3918. identifier: ''
  3919. optional: true
  3920. widget: select
  3921. multiple: false
  3922. remember: false
  3923. default_group: All
  3924. default_group_multiple: { }
  3925. group_items: { }
  3926. filter_groups:
  3927. operator: AND
  3928. groups:
  3929. 1: AND
  3930. defaults:
  3931. title: false
  3932. fields: false
  3933. filters: false
  3934. filter_groups: false
  3935. display_description: ''
  3936. display_extenders:
  3937. views_ef_fieldset: { }
  3938. path: admin/content/Statics
  3939. menu:
  3940. type: tab
  3941. title: 'Statics & Iframe'
  3942. description: ''
  3943. weight: -10
  3944. expanded: false
  3945. menu_name: admin
  3946. parent: system.admin_content
  3947. context: '0'
  3948. tab_options:
  3949. type: normal
  3950. title: Contenu
  3951. description: 'Trouver et gérer le contenu'
  3952. weight: -10
  3953. menu_name: admin
  3954. cache_metadata:
  3955. max-age: 0
  3956. contexts:
  3957. - 'languages:language_content'
  3958. - 'languages:language_interface'
  3959. - url
  3960. - url.query_args
  3961. - user
  3962. - 'user.node_grants:view'
  3963. - user.permissions
  3964. tags:
  3965. - 'config:field.storage.node.field_memo'
  3966. - 'config:field.storage.node.field_partenaires'
  3967. page_5:
  3968. id: page_5
  3969. display_title: Ressources
  3970. display_plugin: page
  3971. position: 1
  3972. display_options:
  3973. title: Ressources
  3974. fields:
  3975. node_bulk_form:
  3976. id: node_bulk_form
  3977. table: node
  3978. field: node_bulk_form
  3979. entity_type: node
  3980. plugin_id: node_bulk_form
  3981. label: ''
  3982. exclude: false
  3983. alter:
  3984. alter_text: false
  3985. element_class: ''
  3986. element_default_classes: true
  3987. empty: ''
  3988. hide_empty: false
  3989. empty_zero: false
  3990. hide_alter_empty: true
  3991. field_image:
  3992. id: field_image
  3993. table: node__field_image
  3994. field: field_image
  3995. relationship: none
  3996. group_type: group
  3997. admin_label: ''
  3998. plugin_id: field
  3999. label: Image
  4000. exclude: false
  4001. alter:
  4002. alter_text: false
  4003. text: ''
  4004. make_link: false
  4005. path: ''
  4006. absolute: false
  4007. external: false
  4008. replace_spaces: false
  4009. path_case: none
  4010. trim_whitespace: false
  4011. alt: ''
  4012. rel: ''
  4013. link_class: ''
  4014. prefix: ''
  4015. suffix: ''
  4016. target: ''
  4017. nl2br: false
  4018. max_length: 0
  4019. word_boundary: true
  4020. ellipsis: true
  4021. more_link: false
  4022. more_link_text: ''
  4023. more_link_path: ''
  4024. strip_tags: false
  4025. trim: false
  4026. preserve_tags: ''
  4027. html: false
  4028. element_type: ''
  4029. element_class: ''
  4030. element_label_type: ''
  4031. element_label_class: ''
  4032. element_label_colon: true
  4033. element_wrapper_type: ''
  4034. element_wrapper_class: ''
  4035. element_default_classes: true
  4036. empty: ''
  4037. hide_empty: false
  4038. empty_zero: false
  4039. hide_alter_empty: true
  4040. click_sort_column: target_id
  4041. type: image
  4042. settings:
  4043. image_link: ''
  4044. image_style: thumbnail
  4045. image_loading:
  4046. attribute: lazy
  4047. group_column: ''
  4048. group_columns: { }
  4049. group_rows: true
  4050. delta_limit: 0
  4051. delta_offset: 0
  4052. delta_reversed: false
  4053. delta_first_last: false
  4054. multi_type: separator
  4055. separator: ', '
  4056. field_api_classes: false
  4057. title:
  4058. id: title
  4059. table: node_field_data
  4060. field: title
  4061. entity_type: node
  4062. entity_field: title
  4063. plugin_id: field
  4064. label: Titre
  4065. exclude: false
  4066. alter:
  4067. alter_text: false
  4068. element_class: ''
  4069. element_default_classes: true
  4070. empty: ''
  4071. hide_empty: false
  4072. empty_zero: false
  4073. hide_alter_empty: true
  4074. type: string
  4075. settings:
  4076. link_to_entity: true
  4077. field_type_de_ressource:
  4078. id: field_type_de_ressource
  4079. table: node__field_type_de_ressource
  4080. field: field_type_de_ressource
  4081. relationship: none
  4082. group_type: group
  4083. admin_label: ''
  4084. plugin_id: field
  4085. label: 'Type de ressource'
  4086. exclude: false
  4087. alter:
  4088. alter_text: false
  4089. text: ''
  4090. make_link: false
  4091. path: ''
  4092. absolute: false
  4093. external: false
  4094. replace_spaces: false
  4095. path_case: none
  4096. trim_whitespace: false
  4097. alt: ''
  4098. rel: ''
  4099. link_class: ''
  4100. prefix: ''
  4101. suffix: ''
  4102. target: ''
  4103. nl2br: false
  4104. max_length: 0
  4105. word_boundary: true
  4106. ellipsis: true
  4107. more_link: false
  4108. more_link_text: ''
  4109. more_link_path: ''
  4110. strip_tags: false
  4111. trim: false
  4112. preserve_tags: ''
  4113. html: false
  4114. element_type: ''
  4115. element_class: ''
  4116. element_label_type: ''
  4117. element_label_class: ''
  4118. element_label_colon: true
  4119. element_wrapper_type: ''
  4120. element_wrapper_class: ''
  4121. element_default_classes: true
  4122. empty: ''
  4123. hide_empty: false
  4124. empty_zero: false
  4125. hide_alter_empty: true
  4126. click_sort_column: target_id
  4127. type: entity_reference_label
  4128. settings:
  4129. link: true
  4130. group_column: target_id
  4131. group_columns: { }
  4132. group_rows: true
  4133. delta_limit: 0
  4134. delta_offset: 0
  4135. delta_reversed: false
  4136. delta_first_last: false
  4137. multi_type: separator
  4138. separator: ', '
  4139. field_api_classes: false
  4140. operations:
  4141. id: operations
  4142. table: node
  4143. field: operations
  4144. relationship: none
  4145. group_type: group
  4146. admin_label: ''
  4147. plugin_id: entity_operations
  4148. label: Actions
  4149. exclude: false
  4150. alter:
  4151. alter_text: false
  4152. text: ''
  4153. make_link: false
  4154. path: ''
  4155. absolute: false
  4156. external: false
  4157. replace_spaces: false
  4158. path_case: none
  4159. trim_whitespace: false
  4160. alt: ''
  4161. rel: ''
  4162. link_class: ''
  4163. prefix: ''
  4164. suffix: ''
  4165. target: ''
  4166. nl2br: false
  4167. max_length: 0
  4168. word_boundary: true
  4169. ellipsis: true
  4170. more_link: false
  4171. more_link_text: ''
  4172. more_link_path: ''
  4173. strip_tags: false
  4174. trim: false
  4175. preserve_tags: ''
  4176. html: false
  4177. element_type: ''
  4178. element_class: ''
  4179. element_label_type: ''
  4180. element_label_class: ''
  4181. element_label_colon: true
  4182. element_wrapper_type: ''
  4183. element_wrapper_class: ''
  4184. element_default_classes: true
  4185. empty: ''
  4186. hide_empty: false
  4187. empty_zero: false
  4188. hide_alter_empty: true
  4189. destination: true
  4190. field_collections:
  4191. id: field_collections
  4192. table: node__field_collections
  4193. field: field_collections
  4194. relationship: none
  4195. group_type: group
  4196. admin_label: ''
  4197. plugin_id: field
  4198. label: Collections
  4199. exclude: false
  4200. alter:
  4201. alter_text: false
  4202. text: ''
  4203. make_link: false
  4204. path: ''
  4205. absolute: false
  4206. external: false
  4207. replace_spaces: false
  4208. path_case: none
  4209. trim_whitespace: false
  4210. alt: ''
  4211. rel: ''
  4212. link_class: ''
  4213. prefix: ''
  4214. suffix: ''
  4215. target: ''
  4216. nl2br: false
  4217. max_length: 0
  4218. word_boundary: true
  4219. ellipsis: true
  4220. more_link: false
  4221. more_link_text: ''
  4222. more_link_path: ''
  4223. strip_tags: false
  4224. trim: false
  4225. preserve_tags: ''
  4226. html: false
  4227. element_type: ''
  4228. element_class: ''
  4229. element_label_type: ''
  4230. element_label_class: ''
  4231. element_label_colon: true
  4232. element_wrapper_type: ''
  4233. element_wrapper_class: ''
  4234. element_default_classes: true
  4235. empty: ''
  4236. hide_empty: false
  4237. empty_zero: false
  4238. hide_alter_empty: true
  4239. click_sort_column: target_id
  4240. type: entity_reference_label
  4241. settings:
  4242. link: true
  4243. group_column: target_id
  4244. group_columns: { }
  4245. group_rows: true
  4246. delta_limit: 0
  4247. delta_offset: 0
  4248. delta_reversed: false
  4249. delta_first_last: false
  4250. multi_type: separator
  4251. separator: ', '
  4252. field_api_classes: false
  4253. field_programme:
  4254. id: field_programme
  4255. table: node__field_programme
  4256. field: field_programme
  4257. relationship: none
  4258. group_type: group
  4259. admin_label: ''
  4260. plugin_id: field
  4261. label: 'Programme Popsu'
  4262. exclude: false
  4263. alter:
  4264. alter_text: false
  4265. text: ''
  4266. make_link: false
  4267. path: ''
  4268. absolute: false
  4269. external: false
  4270. replace_spaces: false
  4271. path_case: none
  4272. trim_whitespace: false
  4273. alt: ''
  4274. rel: ''
  4275. link_class: ''
  4276. prefix: ''
  4277. suffix: ''
  4278. target: ''
  4279. nl2br: false
  4280. max_length: 0
  4281. word_boundary: true
  4282. ellipsis: true
  4283. more_link: false
  4284. more_link_text: ''
  4285. more_link_path: ''
  4286. strip_tags: false
  4287. trim: false
  4288. preserve_tags: ''
  4289. html: false
  4290. element_type: ''
  4291. element_class: ''
  4292. element_label_type: ''
  4293. element_label_class: ''
  4294. element_label_colon: true
  4295. element_wrapper_type: ''
  4296. element_wrapper_class: ''
  4297. element_default_classes: true
  4298. empty: ''
  4299. hide_empty: false
  4300. empty_zero: false
  4301. hide_alter_empty: true
  4302. click_sort_column: target_id
  4303. type: entity_reference_label
  4304. settings:
  4305. link: true
  4306. group_column: target_id
  4307. group_columns: { }
  4308. group_rows: true
  4309. delta_limit: 0
  4310. delta_offset: 0
  4311. delta_reversed: false
  4312. delta_first_last: false
  4313. multi_type: separator
  4314. separator: ', '
  4315. field_api_classes: false
  4316. field_projet:
  4317. id: field_projet
  4318. table: node__field_projet
  4319. field: field_projet
  4320. relationship: none
  4321. group_type: group
  4322. admin_label: ''
  4323. plugin_id: field
  4324. label: Projet
  4325. exclude: false
  4326. alter:
  4327. alter_text: false
  4328. text: ''
  4329. make_link: false
  4330. path: ''
  4331. absolute: false
  4332. external: false
  4333. replace_spaces: false
  4334. path_case: none
  4335. trim_whitespace: false
  4336. alt: ''
  4337. rel: ''
  4338. link_class: ''
  4339. prefix: ''
  4340. suffix: ''
  4341. target: ''
  4342. nl2br: false
  4343. max_length: 0
  4344. word_boundary: true
  4345. ellipsis: true
  4346. more_link: false
  4347. more_link_text: ''
  4348. more_link_path: ''
  4349. strip_tags: false
  4350. trim: false
  4351. preserve_tags: ''
  4352. html: false
  4353. element_type: ''
  4354. element_class: ''
  4355. element_label_type: ''
  4356. element_label_class: ''
  4357. element_label_colon: true
  4358. element_wrapper_type: ''
  4359. element_wrapper_class: ''
  4360. element_default_classes: true
  4361. empty: ''
  4362. hide_empty: false
  4363. empty_zero: false
  4364. hide_alter_empty: true
  4365. click_sort_column: target_id
  4366. type: entity_reference_label
  4367. settings:
  4368. link: true
  4369. group_column: target_id
  4370. group_columns: { }
  4371. group_rows: true
  4372. delta_limit: 0
  4373. delta_offset: 0
  4374. delta_reversed: false
  4375. delta_first_last: false
  4376. multi_type: separator
  4377. separator: ', '
  4378. field_api_classes: false
  4379. field_theme:
  4380. id: field_theme
  4381. table: node__field_theme
  4382. field: field_theme
  4383. relationship: none
  4384. group_type: group
  4385. admin_label: ''
  4386. plugin_id: field
  4387. label: Thème
  4388. exclude: false
  4389. alter:
  4390. alter_text: false
  4391. text: ''
  4392. make_link: false
  4393. path: ''
  4394. absolute: false
  4395. external: false
  4396. replace_spaces: false
  4397. path_case: none
  4398. trim_whitespace: false
  4399. alt: ''
  4400. rel: ''
  4401. link_class: ''
  4402. prefix: ''
  4403. suffix: ''
  4404. target: ''
  4405. nl2br: false
  4406. max_length: 0
  4407. word_boundary: true
  4408. ellipsis: true
  4409. more_link: false
  4410. more_link_text: ''
  4411. more_link_path: ''
  4412. strip_tags: false
  4413. trim: false
  4414. preserve_tags: ''
  4415. html: false
  4416. element_type: ''
  4417. element_class: ''
  4418. element_label_type: ''
  4419. element_label_class: ''
  4420. element_label_colon: true
  4421. element_wrapper_type: ''
  4422. element_wrapper_class: ''
  4423. element_default_classes: true
  4424. empty: ''
  4425. hide_empty: false
  4426. empty_zero: false
  4427. hide_alter_empty: true
  4428. click_sort_column: target_id
  4429. type: entity_reference_label
  4430. settings:
  4431. link: true
  4432. group_column: target_id
  4433. group_columns: { }
  4434. group_rows: true
  4435. delta_limit: 0
  4436. delta_offset: 0
  4437. delta_reversed: false
  4438. delta_first_last: false
  4439. multi_type: separator
  4440. separator: ', '
  4441. field_api_classes: false
  4442. field_evenements_lies:
  4443. id: field_evenements_lies
  4444. table: node__field_evenements_lies
  4445. field: field_evenements_lies
  4446. relationship: none
  4447. group_type: group
  4448. admin_label: ''
  4449. plugin_id: field
  4450. label: 'Évènements liés'
  4451. exclude: false
  4452. alter:
  4453. alter_text: false
  4454. text: ''
  4455. make_link: false
  4456. path: ''
  4457. absolute: false
  4458. external: false
  4459. replace_spaces: false
  4460. path_case: none
  4461. trim_whitespace: false
  4462. alt: ''
  4463. rel: ''
  4464. link_class: ''
  4465. prefix: ''
  4466. suffix: ''
  4467. target: ''
  4468. nl2br: false
  4469. max_length: 0
  4470. word_boundary: true
  4471. ellipsis: true
  4472. more_link: false
  4473. more_link_text: ''
  4474. more_link_path: ''
  4475. strip_tags: false
  4476. trim: false
  4477. preserve_tags: ''
  4478. html: false
  4479. element_type: ''
  4480. element_class: ''
  4481. element_label_type: ''
  4482. element_label_class: ''
  4483. element_label_colon: true
  4484. element_wrapper_type: ''
  4485. element_wrapper_class: ''
  4486. element_default_classes: true
  4487. empty: ''
  4488. hide_empty: false
  4489. empty_zero: false
  4490. hide_alter_empty: true
  4491. click_sort_column: target_id
  4492. type: entity_reference_label
  4493. settings:
  4494. link: true
  4495. group_column: target_id
  4496. group_columns: { }
  4497. group_rows: true
  4498. delta_limit: 0
  4499. delta_offset: 0
  4500. delta_reversed: false
  4501. delta_first_last: false
  4502. multi_type: separator
  4503. separator: ', '
  4504. field_api_classes: false
  4505. field_ressources_liees:
  4506. id: field_ressources_liees
  4507. table: node__field_ressources_liees
  4508. field: field_ressources_liees
  4509. relationship: none
  4510. group_type: group
  4511. admin_label: ''
  4512. plugin_id: field
  4513. label: Ressources
  4514. exclude: false
  4515. alter:
  4516. alter_text: false
  4517. text: ''
  4518. make_link: false
  4519. path: ''
  4520. absolute: false
  4521. external: false
  4522. replace_spaces: false
  4523. path_case: none
  4524. trim_whitespace: false
  4525. alt: ''
  4526. rel: ''
  4527. link_class: ''
  4528. prefix: ''
  4529. suffix: ''
  4530. target: ''
  4531. nl2br: false
  4532. max_length: 0
  4533. word_boundary: true
  4534. ellipsis: true
  4535. more_link: false
  4536. more_link_text: ''
  4537. more_link_path: ''
  4538. strip_tags: false
  4539. trim: false
  4540. preserve_tags: ''
  4541. html: false
  4542. element_type: ''
  4543. element_class: ''
  4544. element_label_type: ''
  4545. element_label_class: ''
  4546. element_label_colon: true
  4547. element_wrapper_type: ''
  4548. element_wrapper_class: ''
  4549. element_default_classes: true
  4550. empty: ''
  4551. hide_empty: false
  4552. empty_zero: false
  4553. hide_alter_empty: true
  4554. click_sort_column: target_id
  4555. type: entity_reference_label
  4556. settings:
  4557. link: true
  4558. group_column: target_id
  4559. group_columns: { }
  4560. group_rows: true
  4561. delta_limit: 0
  4562. delta_offset: 0
  4563. delta_reversed: false
  4564. delta_first_last: false
  4565. multi_type: ul
  4566. separator: ', '
  4567. field_api_classes: false
  4568. field_poid:
  4569. id: field_poid
  4570. table: node__field_poid
  4571. field: field_poid
  4572. relationship: none
  4573. group_type: group
  4574. admin_label: ''
  4575. plugin_id: field
  4576. label: Poid
  4577. exclude: false
  4578. alter:
  4579. alter_text: false
  4580. text: ''
  4581. make_link: false
  4582. path: ''
  4583. absolute: false
  4584. external: false
  4585. replace_spaces: false
  4586. path_case: none
  4587. trim_whitespace: false
  4588. alt: ''
  4589. rel: ''
  4590. link_class: ''
  4591. prefix: ''
  4592. suffix: ''
  4593. target: ''
  4594. nl2br: false
  4595. max_length: 0
  4596. word_boundary: true
  4597. ellipsis: true
  4598. more_link: false
  4599. more_link_text: ''
  4600. more_link_path: ''
  4601. strip_tags: false
  4602. trim: false
  4603. preserve_tags: ''
  4604. html: false
  4605. element_type: ''
  4606. element_class: ''
  4607. element_label_type: ''
  4608. element_label_class: ''
  4609. element_label_colon: true
  4610. element_wrapper_type: ''
  4611. element_wrapper_class: ''
  4612. element_default_classes: true
  4613. empty: ''
  4614. hide_empty: false
  4615. empty_zero: false
  4616. hide_alter_empty: true
  4617. click_sort_column: value
  4618. type: number_integer
  4619. settings:
  4620. thousand_separator: ''
  4621. prefix_suffix: true
  4622. group_column: value
  4623. group_columns: { }
  4624. group_rows: true
  4625. delta_limit: 0
  4626. delta_offset: 0
  4627. delta_reversed: false
  4628. delta_first_last: false
  4629. multi_type: separator
  4630. separator: ', '
  4631. field_api_classes: false
  4632. status:
  4633. id: status
  4634. table: node_field_data
  4635. field: status
  4636. entity_type: node
  4637. entity_field: status
  4638. plugin_id: field
  4639. label: État
  4640. exclude: false
  4641. alter:
  4642. alter_text: false
  4643. element_class: ''
  4644. element_default_classes: true
  4645. empty: ''
  4646. hide_empty: false
  4647. empty_zero: false
  4648. hide_alter_empty: true
  4649. type: boolean
  4650. settings:
  4651. format: custom
  4652. format_custom_false: 'Non publié'
  4653. format_custom_true: Publié
  4654. changed:
  4655. id: changed
  4656. table: node_field_data
  4657. field: changed
  4658. entity_type: node
  4659. entity_field: changed
  4660. plugin_id: field
  4661. label: 'Mis à jour'
  4662. exclude: false
  4663. alter:
  4664. alter_text: false
  4665. element_class: ''
  4666. element_default_classes: true
  4667. empty: ''
  4668. hide_empty: false
  4669. empty_zero: false
  4670. hide_alter_empty: true
  4671. type: timestamp
  4672. settings:
  4673. date_format: short
  4674. custom_date_format: ''
  4675. timezone: ''
  4676. field_memo:
  4677. id: field_memo
  4678. table: node__field_memo
  4679. field: field_memo
  4680. relationship: none
  4681. group_type: group
  4682. admin_label: ''
  4683. plugin_id: field
  4684. label: memo
  4685. exclude: false
  4686. alter:
  4687. alter_text: false
  4688. text: ''
  4689. make_link: false
  4690. path: ''
  4691. absolute: false
  4692. external: false
  4693. replace_spaces: false
  4694. path_case: none
  4695. trim_whitespace: false
  4696. alt: ''
  4697. rel: ''
  4698. link_class: ''
  4699. prefix: ''
  4700. suffix: ''
  4701. target: ''
  4702. nl2br: false
  4703. max_length: 0
  4704. word_boundary: true
  4705. ellipsis: true
  4706. more_link: false
  4707. more_link_text: ''
  4708. more_link_path: ''
  4709. strip_tags: false
  4710. trim: false
  4711. preserve_tags: ''
  4712. html: false
  4713. element_type: ''
  4714. element_class: ''
  4715. element_label_type: ''
  4716. element_label_class: ''
  4717. element_label_colon: true
  4718. element_wrapper_type: ''
  4719. element_wrapper_class: ''
  4720. element_default_classes: true
  4721. empty: ''
  4722. hide_empty: false
  4723. empty_zero: false
  4724. hide_alter_empty: true
  4725. click_sort_column: value
  4726. type: basic_string
  4727. settings: { }
  4728. group_column: value
  4729. group_columns: { }
  4730. group_rows: true
  4731. delta_limit: 0
  4732. delta_offset: 0
  4733. delta_reversed: false
  4734. delta_first_last: false
  4735. multi_type: separator
  4736. separator: ', '
  4737. field_api_classes: false
  4738. filters:
  4739. title:
  4740. id: title
  4741. table: node_field_data
  4742. field: title
  4743. relationship: none
  4744. group_type: group
  4745. admin_label: ''
  4746. entity_type: node
  4747. entity_field: title
  4748. plugin_id: string
  4749. operator: contains
  4750. value: ''
  4751. group: 1
  4752. exposed: true
  4753. expose:
  4754. operator_id: title_op
  4755. label: Titre
  4756. description: ''
  4757. use_operator: false
  4758. operator: title_op
  4759. operator_limit_selection: false
  4760. operator_list: { }
  4761. identifier: title
  4762. required: false
  4763. remember: false
  4764. multiple: false
  4765. remember_roles:
  4766. authenticated: authenticated
  4767. anonymous: '0'
  4768. administrator: '0'
  4769. is_grouped: false
  4770. group_info:
  4771. label: ''
  4772. description: ''
  4773. identifier: ''
  4774. optional: true
  4775. widget: select
  4776. multiple: false
  4777. remember: false
  4778. default_group: All
  4779. default_group_multiple: { }
  4780. group_items: { }
  4781. type:
  4782. id: type
  4783. table: node_field_data
  4784. field: type
  4785. relationship: none
  4786. group_type: group
  4787. admin_label: ''
  4788. entity_type: node
  4789. entity_field: type
  4790. plugin_id: bundle
  4791. operator: in
  4792. value:
  4793. ressource: ressource
  4794. group: 1
  4795. exposed: false
  4796. expose:
  4797. operator_id: type_op
  4798. label: 'Type de contenu'
  4799. description: ''
  4800. use_operator: false
  4801. operator: type_op
  4802. operator_limit_selection: false
  4803. operator_list: { }
  4804. identifier: type
  4805. required: false
  4806. remember: false
  4807. multiple: false
  4808. remember_roles:
  4809. authenticated: authenticated
  4810. anonymous: '0'
  4811. administrator: '0'
  4812. reduce: false
  4813. is_grouped: false
  4814. group_info:
  4815. label: ''
  4816. description: ''
  4817. identifier: ''
  4818. optional: true
  4819. widget: select
  4820. multiple: false
  4821. remember: false
  4822. default_group: All
  4823. default_group_multiple: { }
  4824. group_items: { }
  4825. status:
  4826. id: status
  4827. table: node_field_data
  4828. field: status
  4829. relationship: none
  4830. group_type: group
  4831. admin_label: ''
  4832. entity_type: node
  4833. entity_field: status
  4834. plugin_id: boolean
  4835. operator: '='
  4836. value: '1'
  4837. group: 1
  4838. exposed: true
  4839. expose:
  4840. operator_id: ''
  4841. label: État
  4842. description: ''
  4843. use_operator: false
  4844. operator: status_op
  4845. operator_limit_selection: false
  4846. operator_list: { }
  4847. identifier: status
  4848. required: false
  4849. remember: false
  4850. multiple: false
  4851. remember_roles:
  4852. authenticated: authenticated
  4853. is_grouped: true
  4854. group_info:
  4855. label: 'Statut de publication'
  4856. description: ''
  4857. identifier: status
  4858. optional: true
  4859. widget: select
  4860. multiple: false
  4861. remember: false
  4862. default_group: All
  4863. default_group_multiple: { }
  4864. group_items:
  4865. 1:
  4866. title: Publié
  4867. operator: '='
  4868. value: '1'
  4869. 2:
  4870. title: 'Non publié'
  4871. operator: '='
  4872. value: '0'
  4873. status_extra:
  4874. id: status_extra
  4875. table: node_field_data
  4876. field: status_extra
  4877. entity_type: node
  4878. plugin_id: node_status
  4879. operator: '='
  4880. value: false
  4881. group: 1
  4882. expose:
  4883. operator_limit_selection: false
  4884. operator_list: { }
  4885. field_memo_value:
  4886. id: field_memo_value
  4887. table: node__field_memo
  4888. field: field_memo_value
  4889. relationship: none
  4890. group_type: group
  4891. admin_label: ''
  4892. plugin_id: string
  4893. operator: contains
  4894. value: ''
  4895. group: 1
  4896. exposed: true
  4897. expose:
  4898. operator_id: field_memo_value_op
  4899. label: memo
  4900. description: ''
  4901. use_operator: false
  4902. operator: field_memo_value_op
  4903. operator_limit_selection: false
  4904. operator_list: { }
  4905. identifier: field_memo_value
  4906. required: false
  4907. remember: false
  4908. multiple: false
  4909. remember_roles:
  4910. authenticated: authenticated
  4911. anonymous: '0'
  4912. admin: '0'
  4913. root: '0'
  4914. user: '0'
  4915. editeur: '0'
  4916. placeholder: ''
  4917. is_grouped: false
  4918. group_info:
  4919. label: ''
  4920. description: ''
  4921. identifier: ''
  4922. optional: true
  4923. widget: select
  4924. multiple: false
  4925. remember: false
  4926. default_group: All
  4927. default_group_multiple: { }
  4928. group_items: { }
  4929. filter_groups:
  4930. operator: AND
  4931. groups:
  4932. 1: AND
  4933. defaults:
  4934. title: false
  4935. fields: false
  4936. filters: false
  4937. filter_groups: false
  4938. display_description: ''
  4939. display_extenders:
  4940. views_ef_fieldset: { }
  4941. path: admin/content/ressources
  4942. menu:
  4943. type: tab
  4944. title: Ressources
  4945. description: ''
  4946. weight: -10
  4947. expanded: false
  4948. menu_name: admin
  4949. parent: system.admin_content
  4950. context: '0'
  4951. tab_options:
  4952. type: normal
  4953. title: Contenu
  4954. description: 'Trouver et gérer le contenu'
  4955. weight: -10
  4956. menu_name: admin
  4957. cache_metadata:
  4958. max-age: 0
  4959. contexts:
  4960. - 'languages:language_content'
  4961. - 'languages:language_interface'
  4962. - url
  4963. - url.query_args
  4964. - user
  4965. - 'user.node_grants:view'
  4966. - user.permissions
  4967. tags:
  4968. - 'config:field.storage.node.field_collections'
  4969. - 'config:field.storage.node.field_evenements_lies'
  4970. - 'config:field.storage.node.field_image'
  4971. - 'config:field.storage.node.field_memo'
  4972. - 'config:field.storage.node.field_poid'
  4973. - 'config:field.storage.node.field_programme'
  4974. - 'config:field.storage.node.field_projet'
  4975. - 'config:field.storage.node.field_ressources_liees'
  4976. - 'config:field.storage.node.field_theme'
  4977. - 'config:field.storage.node.field_type_de_ressource'
  4978. page_6:
  4979. id: page_6
  4980. display_title: Evenements
  4981. display_plugin: page
  4982. position: 1
  4983. display_options:
  4984. title: Evenements
  4985. fields:
  4986. node_bulk_form:
  4987. id: node_bulk_form
  4988. table: node
  4989. field: node_bulk_form
  4990. entity_type: node
  4991. plugin_id: node_bulk_form
  4992. label: ''
  4993. exclude: false
  4994. alter:
  4995. alter_text: false
  4996. element_class: ''
  4997. element_default_classes: true
  4998. empty: ''
  4999. hide_empty: false
  5000. empty_zero: false
  5001. hide_alter_empty: true
  5002. field_image:
  5003. id: field_image
  5004. table: node__field_image
  5005. field: field_image
  5006. relationship: none
  5007. group_type: group
  5008. admin_label: ''
  5009. plugin_id: field
  5010. label: Image
  5011. exclude: false
  5012. alter:
  5013. alter_text: false
  5014. text: ''
  5015. make_link: false
  5016. path: ''
  5017. absolute: false
  5018. external: false
  5019. replace_spaces: false
  5020. path_case: none
  5021. trim_whitespace: false
  5022. alt: ''
  5023. rel: ''
  5024. link_class: ''
  5025. prefix: ''
  5026. suffix: ''
  5027. target: ''
  5028. nl2br: false
  5029. max_length: 0
  5030. word_boundary: true
  5031. ellipsis: true
  5032. more_link: false
  5033. more_link_text: ''
  5034. more_link_path: ''
  5035. strip_tags: false
  5036. trim: false
  5037. preserve_tags: ''
  5038. html: false
  5039. element_type: ''
  5040. element_class: ''
  5041. element_label_type: ''
  5042. element_label_class: ''
  5043. element_label_colon: true
  5044. element_wrapper_type: ''
  5045. element_wrapper_class: ''
  5046. element_default_classes: true
  5047. empty: ''
  5048. hide_empty: false
  5049. empty_zero: false
  5050. hide_alter_empty: true
  5051. click_sort_column: target_id
  5052. type: image
  5053. settings:
  5054. image_link: ''
  5055. image_style: thumbnail
  5056. image_loading:
  5057. attribute: lazy
  5058. group_column: ''
  5059. group_columns: { }
  5060. group_rows: true
  5061. delta_limit: 0
  5062. delta_offset: 0
  5063. delta_reversed: false
  5064. delta_first_last: false
  5065. multi_type: separator
  5066. separator: ', '
  5067. field_api_classes: false
  5068. title:
  5069. id: title
  5070. table: node_field_data
  5071. field: title
  5072. entity_type: node
  5073. entity_field: title
  5074. plugin_id: field
  5075. label: Titre
  5076. exclude: false
  5077. alter:
  5078. alter_text: false
  5079. element_class: ''
  5080. element_default_classes: true
  5081. empty: ''
  5082. hide_empty: false
  5083. empty_zero: false
  5084. hide_alter_empty: true
  5085. type: string
  5086. settings:
  5087. link_to_entity: true
  5088. field_sous_titre:
  5089. id: field_sous_titre
  5090. table: node__field_sous_titre
  5091. field: field_sous_titre
  5092. relationship: none
  5093. group_type: group
  5094. admin_label: ''
  5095. plugin_id: field
  5096. label: 'Sous titre'
  5097. exclude: false
  5098. alter:
  5099. alter_text: false
  5100. text: ''
  5101. make_link: false
  5102. path: ''
  5103. absolute: false
  5104. external: false
  5105. replace_spaces: false
  5106. path_case: none
  5107. trim_whitespace: false
  5108. alt: ''
  5109. rel: ''
  5110. link_class: ''
  5111. prefix: ''
  5112. suffix: ''
  5113. target: ''
  5114. nl2br: false
  5115. max_length: 0
  5116. word_boundary: true
  5117. ellipsis: true
  5118. more_link: false
  5119. more_link_text: ''
  5120. more_link_path: ''
  5121. strip_tags: false
  5122. trim: false
  5123. preserve_tags: ''
  5124. html: false
  5125. element_type: ''
  5126. element_class: ''
  5127. element_label_type: ''
  5128. element_label_class: ''
  5129. element_label_colon: true
  5130. element_wrapper_type: ''
  5131. element_wrapper_class: ''
  5132. element_default_classes: true
  5133. empty: ''
  5134. hide_empty: false
  5135. empty_zero: false
  5136. hide_alter_empty: true
  5137. click_sort_column: value
  5138. type: string
  5139. settings:
  5140. link_to_entity: false
  5141. group_column: value
  5142. group_columns: { }
  5143. group_rows: true
  5144. delta_limit: 0
  5145. delta_offset: 0
  5146. delta_reversed: false
  5147. delta_first_last: false
  5148. multi_type: separator
  5149. separator: ', '
  5150. field_api_classes: false
  5151. operations:
  5152. id: operations
  5153. table: node
  5154. field: operations
  5155. relationship: none
  5156. group_type: group
  5157. admin_label: ''
  5158. plugin_id: entity_operations
  5159. label: Actions
  5160. exclude: false
  5161. alter:
  5162. alter_text: false
  5163. text: ''
  5164. make_link: false
  5165. path: ''
  5166. absolute: false
  5167. external: false
  5168. replace_spaces: false
  5169. path_case: none
  5170. trim_whitespace: false
  5171. alt: ''
  5172. rel: ''
  5173. link_class: ''
  5174. prefix: ''
  5175. suffix: ''
  5176. target: ''
  5177. nl2br: false
  5178. max_length: 0
  5179. word_boundary: true
  5180. ellipsis: true
  5181. more_link: false
  5182. more_link_text: ''
  5183. more_link_path: ''
  5184. strip_tags: false
  5185. trim: false
  5186. preserve_tags: ''
  5187. html: false
  5188. element_type: ''
  5189. element_class: ''
  5190. element_label_type: ''
  5191. element_label_class: ''
  5192. element_label_colon: true
  5193. element_wrapper_type: ''
  5194. element_wrapper_class: ''
  5195. element_default_classes: true
  5196. empty: ''
  5197. hide_empty: false
  5198. empty_zero: false
  5199. hide_alter_empty: true
  5200. destination: true
  5201. field_programme:
  5202. id: field_programme
  5203. table: node__field_programme
  5204. field: field_programme
  5205. relationship: none
  5206. group_type: group
  5207. admin_label: ''
  5208. plugin_id: field
  5209. label: 'Programme Popsu'
  5210. exclude: false
  5211. alter:
  5212. alter_text: false
  5213. text: ''
  5214. make_link: false
  5215. path: ''
  5216. absolute: false
  5217. external: false
  5218. replace_spaces: false
  5219. path_case: none
  5220. trim_whitespace: false
  5221. alt: ''
  5222. rel: ''
  5223. link_class: ''
  5224. prefix: ''
  5225. suffix: ''
  5226. target: ''
  5227. nl2br: false
  5228. max_length: 0
  5229. word_boundary: true
  5230. ellipsis: true
  5231. more_link: false
  5232. more_link_text: ''
  5233. more_link_path: ''
  5234. strip_tags: false
  5235. trim: false
  5236. preserve_tags: ''
  5237. html: false
  5238. element_type: ''
  5239. element_class: ''
  5240. element_label_type: ''
  5241. element_label_class: ''
  5242. element_label_colon: true
  5243. element_wrapper_type: ''
  5244. element_wrapper_class: ''
  5245. element_default_classes: true
  5246. empty: ''
  5247. hide_empty: false
  5248. empty_zero: false
  5249. hide_alter_empty: true
  5250. click_sort_column: target_id
  5251. type: entity_reference_label
  5252. settings:
  5253. link: true
  5254. group_column: target_id
  5255. group_columns: { }
  5256. group_rows: true
  5257. delta_limit: 0
  5258. delta_offset: 0
  5259. delta_reversed: false
  5260. delta_first_last: false
  5261. multi_type: separator
  5262. separator: ', '
  5263. field_api_classes: false
  5264. field_projet:
  5265. id: field_projet
  5266. table: node__field_projet
  5267. field: field_projet
  5268. relationship: none
  5269. group_type: group
  5270. admin_label: ''
  5271. plugin_id: field
  5272. label: Projet
  5273. exclude: false
  5274. alter:
  5275. alter_text: false
  5276. text: ''
  5277. make_link: false
  5278. path: ''
  5279. absolute: false
  5280. external: false
  5281. replace_spaces: false
  5282. path_case: none
  5283. trim_whitespace: false
  5284. alt: ''
  5285. rel: ''
  5286. link_class: ''
  5287. prefix: ''
  5288. suffix: ''
  5289. target: ''
  5290. nl2br: false
  5291. max_length: 0
  5292. word_boundary: true
  5293. ellipsis: true
  5294. more_link: false
  5295. more_link_text: ''
  5296. more_link_path: ''
  5297. strip_tags: false
  5298. trim: false
  5299. preserve_tags: ''
  5300. html: false
  5301. element_type: ''
  5302. element_class: ''
  5303. element_label_type: ''
  5304. element_label_class: ''
  5305. element_label_colon: true
  5306. element_wrapper_type: ''
  5307. element_wrapper_class: ''
  5308. element_default_classes: true
  5309. empty: ''
  5310. hide_empty: false
  5311. empty_zero: false
  5312. hide_alter_empty: true
  5313. click_sort_column: target_id
  5314. type: entity_reference_label
  5315. settings:
  5316. link: true
  5317. group_column: target_id
  5318. group_columns: { }
  5319. group_rows: true
  5320. delta_limit: 0
  5321. delta_offset: 0
  5322. delta_reversed: false
  5323. delta_first_last: false
  5324. multi_type: separator
  5325. separator: ', '
  5326. field_api_classes: false
  5327. field_theme:
  5328. id: field_theme
  5329. table: node__field_theme
  5330. field: field_theme
  5331. relationship: none
  5332. group_type: group
  5333. admin_label: ''
  5334. plugin_id: field
  5335. label: Thème
  5336. exclude: false
  5337. alter:
  5338. alter_text: false
  5339. text: ''
  5340. make_link: false
  5341. path: ''
  5342. absolute: false
  5343. external: false
  5344. replace_spaces: false
  5345. path_case: none
  5346. trim_whitespace: false
  5347. alt: ''
  5348. rel: ''
  5349. link_class: ''
  5350. prefix: ''
  5351. suffix: ''
  5352. target: ''
  5353. nl2br: false
  5354. max_length: 0
  5355. word_boundary: true
  5356. ellipsis: true
  5357. more_link: false
  5358. more_link_text: ''
  5359. more_link_path: ''
  5360. strip_tags: false
  5361. trim: false
  5362. preserve_tags: ''
  5363. html: false
  5364. element_type: ''
  5365. element_class: ''
  5366. element_label_type: ''
  5367. element_label_class: ''
  5368. element_label_colon: true
  5369. element_wrapper_type: ''
  5370. element_wrapper_class: ''
  5371. element_default_classes: true
  5372. empty: ''
  5373. hide_empty: false
  5374. empty_zero: false
  5375. hide_alter_empty: true
  5376. click_sort_column: target_id
  5377. type: entity_reference_label
  5378. settings:
  5379. link: true
  5380. group_column: target_id
  5381. group_columns: { }
  5382. group_rows: true
  5383. delta_limit: 0
  5384. delta_offset: 0
  5385. delta_reversed: false
  5386. delta_first_last: false
  5387. multi_type: separator
  5388. separator: ', '
  5389. field_api_classes: false
  5390. status:
  5391. id: status
  5392. table: node_field_data
  5393. field: status
  5394. entity_type: node
  5395. entity_field: status
  5396. plugin_id: field
  5397. label: État
  5398. exclude: false
  5399. alter:
  5400. alter_text: false
  5401. element_class: ''
  5402. element_default_classes: true
  5403. empty: ''
  5404. hide_empty: false
  5405. empty_zero: false
  5406. hide_alter_empty: true
  5407. type: boolean
  5408. settings:
  5409. format: custom
  5410. format_custom_false: 'Non publié'
  5411. format_custom_true: Publié
  5412. changed:
  5413. id: changed
  5414. table: node_field_data
  5415. field: changed
  5416. entity_type: node
  5417. entity_field: changed
  5418. plugin_id: field
  5419. label: 'Mis à jour'
  5420. exclude: false
  5421. alter:
  5422. alter_text: false
  5423. element_class: ''
  5424. element_default_classes: true
  5425. empty: ''
  5426. hide_empty: false
  5427. empty_zero: false
  5428. hide_alter_empty: true
  5429. type: timestamp
  5430. settings:
  5431. date_format: short
  5432. custom_date_format: ''
  5433. timezone: ''
  5434. field_memo:
  5435. id: field_memo
  5436. table: node__field_memo
  5437. field: field_memo
  5438. relationship: none
  5439. group_type: group
  5440. admin_label: ''
  5441. plugin_id: field
  5442. label: memo
  5443. exclude: false
  5444. alter:
  5445. alter_text: false
  5446. text: ''
  5447. make_link: false
  5448. path: ''
  5449. absolute: false
  5450. external: false
  5451. replace_spaces: false
  5452. path_case: none
  5453. trim_whitespace: false
  5454. alt: ''
  5455. rel: ''
  5456. link_class: ''
  5457. prefix: ''
  5458. suffix: ''
  5459. target: ''
  5460. nl2br: false
  5461. max_length: 0
  5462. word_boundary: true
  5463. ellipsis: true
  5464. more_link: false
  5465. more_link_text: ''
  5466. more_link_path: ''
  5467. strip_tags: false
  5468. trim: false
  5469. preserve_tags: ''
  5470. html: false
  5471. element_type: ''
  5472. element_class: ''
  5473. element_label_type: ''
  5474. element_label_class: ''
  5475. element_label_colon: true
  5476. element_wrapper_type: ''
  5477. element_wrapper_class: ''
  5478. element_default_classes: true
  5479. empty: ''
  5480. hide_empty: false
  5481. empty_zero: false
  5482. hide_alter_empty: true
  5483. click_sort_column: value
  5484. type: basic_string
  5485. settings: { }
  5486. group_column: value
  5487. group_columns: { }
  5488. group_rows: true
  5489. delta_limit: 0
  5490. delta_offset: 0
  5491. delta_reversed: false
  5492. delta_first_last: false
  5493. multi_type: separator
  5494. separator: ', '
  5495. field_api_classes: false
  5496. filters:
  5497. title:
  5498. id: title
  5499. table: node_field_data
  5500. field: title
  5501. relationship: none
  5502. group_type: group
  5503. admin_label: ''
  5504. entity_type: node
  5505. entity_field: title
  5506. plugin_id: string
  5507. operator: contains
  5508. value: ''
  5509. group: 1
  5510. exposed: true
  5511. expose:
  5512. operator_id: title_op
  5513. label: Titre
  5514. description: ''
  5515. use_operator: false
  5516. operator: title_op
  5517. operator_limit_selection: false
  5518. operator_list: { }
  5519. identifier: title
  5520. required: false
  5521. remember: false
  5522. multiple: false
  5523. remember_roles:
  5524. authenticated: authenticated
  5525. anonymous: '0'
  5526. administrator: '0'
  5527. is_grouped: false
  5528. group_info:
  5529. label: ''
  5530. description: ''
  5531. identifier: ''
  5532. optional: true
  5533. widget: select
  5534. multiple: false
  5535. remember: false
  5536. default_group: All
  5537. default_group_multiple: { }
  5538. group_items: { }
  5539. type:
  5540. id: type
  5541. table: node_field_data
  5542. field: type
  5543. relationship: none
  5544. group_type: group
  5545. admin_label: ''
  5546. entity_type: node
  5547. entity_field: type
  5548. plugin_id: bundle
  5549. operator: in
  5550. value:
  5551. evenement: evenement
  5552. group: 1
  5553. exposed: false
  5554. expose:
  5555. operator_id: type_op
  5556. label: 'Type de contenu'
  5557. description: ''
  5558. use_operator: false
  5559. operator: type_op
  5560. operator_limit_selection: false
  5561. operator_list: { }
  5562. identifier: type
  5563. required: false
  5564. remember: false
  5565. multiple: false
  5566. remember_roles:
  5567. authenticated: authenticated
  5568. anonymous: '0'
  5569. administrator: '0'
  5570. reduce: false
  5571. is_grouped: false
  5572. group_info:
  5573. label: ''
  5574. description: ''
  5575. identifier: ''
  5576. optional: true
  5577. widget: select
  5578. multiple: false
  5579. remember: false
  5580. default_group: All
  5581. default_group_multiple: { }
  5582. group_items: { }
  5583. status:
  5584. id: status
  5585. table: node_field_data
  5586. field: status
  5587. relationship: none
  5588. group_type: group
  5589. admin_label: ''
  5590. entity_type: node
  5591. entity_field: status
  5592. plugin_id: boolean
  5593. operator: '='
  5594. value: '1'
  5595. group: 1
  5596. exposed: true
  5597. expose:
  5598. operator_id: ''
  5599. label: État
  5600. description: ''
  5601. use_operator: false
  5602. operator: status_op
  5603. operator_limit_selection: false
  5604. operator_list: { }
  5605. identifier: status
  5606. required: false
  5607. remember: false
  5608. multiple: false
  5609. remember_roles:
  5610. authenticated: authenticated
  5611. is_grouped: true
  5612. group_info:
  5613. label: 'Statut de publication'
  5614. description: ''
  5615. identifier: status
  5616. optional: true
  5617. widget: select
  5618. multiple: false
  5619. remember: false
  5620. default_group: All
  5621. default_group_multiple: { }
  5622. group_items:
  5623. 1:
  5624. title: Publié
  5625. operator: '='
  5626. value: '1'
  5627. 2:
  5628. title: 'Non publié'
  5629. operator: '='
  5630. value: '0'
  5631. status_extra:
  5632. id: status_extra
  5633. table: node_field_data
  5634. field: status_extra
  5635. entity_type: node
  5636. plugin_id: node_status
  5637. operator: '='
  5638. value: false
  5639. group: 1
  5640. expose:
  5641. operator_limit_selection: false
  5642. operator_list: { }
  5643. field_memo_value:
  5644. id: field_memo_value
  5645. table: node__field_memo
  5646. field: field_memo_value
  5647. relationship: none
  5648. group_type: group
  5649. admin_label: ''
  5650. plugin_id: string
  5651. operator: contains
  5652. value: ''
  5653. group: 1
  5654. exposed: true
  5655. expose:
  5656. operator_id: field_memo_value_op
  5657. label: memo
  5658. description: ''
  5659. use_operator: false
  5660. operator: field_memo_value_op
  5661. operator_limit_selection: false
  5662. operator_list: { }
  5663. identifier: field_memo_value
  5664. required: false
  5665. remember: false
  5666. multiple: false
  5667. remember_roles:
  5668. authenticated: authenticated
  5669. anonymous: '0'
  5670. admin: '0'
  5671. root: '0'
  5672. user: '0'
  5673. editeur: '0'
  5674. placeholder: ''
  5675. is_grouped: false
  5676. group_info:
  5677. label: ''
  5678. description: ''
  5679. identifier: ''
  5680. optional: true
  5681. widget: select
  5682. multiple: false
  5683. remember: false
  5684. default_group: All
  5685. default_group_multiple: { }
  5686. group_items: { }
  5687. filter_groups:
  5688. operator: AND
  5689. groups:
  5690. 1: AND
  5691. defaults:
  5692. title: false
  5693. fields: false
  5694. filters: false
  5695. filter_groups: false
  5696. display_description: ''
  5697. display_extenders:
  5698. views_ef_fieldset: { }
  5699. path: admin/content/evenements
  5700. menu:
  5701. type: tab
  5702. title: ÉVenements
  5703. description: ''
  5704. weight: -10
  5705. expanded: false
  5706. menu_name: admin
  5707. parent: system.admin_content
  5708. context: '0'
  5709. tab_options:
  5710. type: normal
  5711. title: Contenu
  5712. description: 'Trouver et gérer le contenu'
  5713. weight: -10
  5714. menu_name: admin
  5715. cache_metadata:
  5716. max-age: 0
  5717. contexts:
  5718. - 'languages:language_content'
  5719. - 'languages:language_interface'
  5720. - url
  5721. - url.query_args
  5722. - user
  5723. - 'user.node_grants:view'
  5724. - user.permissions
  5725. tags:
  5726. - 'config:field.storage.node.field_image'
  5727. - 'config:field.storage.node.field_memo'
  5728. - 'config:field.storage.node.field_programme'
  5729. - 'config:field.storage.node.field_projet'
  5730. - 'config:field.storage.node.field_sous_titre'
  5731. - 'config:field.storage.node.field_theme'
  5732. page_7:
  5733. id: page_7
  5734. display_title: Actualités
  5735. display_plugin: page
  5736. position: 1
  5737. display_options:
  5738. title: Actualités
  5739. fields:
  5740. node_bulk_form:
  5741. id: node_bulk_form
  5742. table: node
  5743. field: node_bulk_form
  5744. entity_type: node
  5745. plugin_id: node_bulk_form
  5746. label: ''
  5747. exclude: false
  5748. alter:
  5749. alter_text: false
  5750. element_class: ''
  5751. element_default_classes: true
  5752. empty: ''
  5753. hide_empty: false
  5754. empty_zero: false
  5755. hide_alter_empty: true
  5756. field_image:
  5757. id: field_image
  5758. table: node__field_image
  5759. field: field_image
  5760. relationship: none
  5761. group_type: group
  5762. admin_label: ''
  5763. plugin_id: field
  5764. label: Image
  5765. exclude: false
  5766. alter:
  5767. alter_text: false
  5768. text: ''
  5769. make_link: false
  5770. path: ''
  5771. absolute: false
  5772. external: false
  5773. replace_spaces: false
  5774. path_case: none
  5775. trim_whitespace: false
  5776. alt: ''
  5777. rel: ''
  5778. link_class: ''
  5779. prefix: ''
  5780. suffix: ''
  5781. target: ''
  5782. nl2br: false
  5783. max_length: 0
  5784. word_boundary: true
  5785. ellipsis: true
  5786. more_link: false
  5787. more_link_text: ''
  5788. more_link_path: ''
  5789. strip_tags: false
  5790. trim: false
  5791. preserve_tags: ''
  5792. html: false
  5793. element_type: ''
  5794. element_class: ''
  5795. element_label_type: ''
  5796. element_label_class: ''
  5797. element_label_colon: true
  5798. element_wrapper_type: ''
  5799. element_wrapper_class: ''
  5800. element_default_classes: true
  5801. empty: ''
  5802. hide_empty: false
  5803. empty_zero: false
  5804. hide_alter_empty: true
  5805. click_sort_column: target_id
  5806. type: image
  5807. settings:
  5808. image_link: ''
  5809. image_style: thumbnail
  5810. image_loading:
  5811. attribute: lazy
  5812. group_column: ''
  5813. group_columns: { }
  5814. group_rows: true
  5815. delta_limit: 0
  5816. delta_offset: 0
  5817. delta_reversed: false
  5818. delta_first_last: false
  5819. multi_type: separator
  5820. separator: ', '
  5821. field_api_classes: false
  5822. title:
  5823. id: title
  5824. table: node_field_data
  5825. field: title
  5826. entity_type: node
  5827. entity_field: title
  5828. plugin_id: field
  5829. label: Titre
  5830. exclude: false
  5831. alter:
  5832. alter_text: false
  5833. element_class: ''
  5834. element_default_classes: true
  5835. empty: ''
  5836. hide_empty: false
  5837. empty_zero: false
  5838. hide_alter_empty: true
  5839. type: string
  5840. settings:
  5841. link_to_entity: true
  5842. operations:
  5843. id: operations
  5844. table: node
  5845. field: operations
  5846. relationship: none
  5847. group_type: group
  5848. admin_label: ''
  5849. plugin_id: entity_operations
  5850. label: Actions
  5851. exclude: false
  5852. alter:
  5853. alter_text: false
  5854. text: ''
  5855. make_link: false
  5856. path: ''
  5857. absolute: false
  5858. external: false
  5859. replace_spaces: false
  5860. path_case: none
  5861. trim_whitespace: false
  5862. alt: ''
  5863. rel: ''
  5864. link_class: ''
  5865. prefix: ''
  5866. suffix: ''
  5867. target: ''
  5868. nl2br: false
  5869. max_length: 0
  5870. word_boundary: true
  5871. ellipsis: true
  5872. more_link: false
  5873. more_link_text: ''
  5874. more_link_path: ''
  5875. strip_tags: false
  5876. trim: false
  5877. preserve_tags: ''
  5878. html: false
  5879. element_type: ''
  5880. element_class: ''
  5881. element_label_type: ''
  5882. element_label_class: ''
  5883. element_label_colon: true
  5884. element_wrapper_type: ''
  5885. element_wrapper_class: ''
  5886. element_default_classes: true
  5887. empty: ''
  5888. hide_empty: false
  5889. empty_zero: false
  5890. hide_alter_empty: true
  5891. destination: true
  5892. field_dates_actu:
  5893. id: field_dates_actu
  5894. table: node__field_dates_actu
  5895. field: field_dates_actu
  5896. relationship: none
  5897. group_type: group
  5898. admin_label: ''
  5899. plugin_id: field
  5900. label: 'Dates actu'
  5901. exclude: false
  5902. alter:
  5903. alter_text: false
  5904. text: ''
  5905. make_link: false
  5906. path: ''
  5907. absolute: false
  5908. external: false
  5909. replace_spaces: false
  5910. path_case: none
  5911. trim_whitespace: false
  5912. alt: ''
  5913. rel: ''
  5914. link_class: ''
  5915. prefix: ''
  5916. suffix: ''
  5917. target: ''
  5918. nl2br: false
  5919. max_length: 0
  5920. word_boundary: true
  5921. ellipsis: true
  5922. more_link: false
  5923. more_link_text: ''
  5924. more_link_path: ''
  5925. strip_tags: false
  5926. trim: false
  5927. preserve_tags: ''
  5928. html: false
  5929. element_type: ''
  5930. element_class: ''
  5931. element_label_type: ''
  5932. element_label_class: ''
  5933. element_label_colon: true
  5934. element_wrapper_type: ''
  5935. element_wrapper_class: ''
  5936. element_default_classes: true
  5937. empty: ''
  5938. hide_empty: false
  5939. empty_zero: false
  5940. hide_alter_empty: true
  5941. click_sort_column: value
  5942. type: smartdate_duration
  5943. settings:
  5944. timezone_override: ''
  5945. format: date_only
  5946. force_chronological: false
  5947. add_classes: false
  5948. group_column: value
  5949. group_columns: { }
  5950. group_rows: true
  5951. delta_limit: 0
  5952. delta_offset: 0
  5953. delta_reversed: false
  5954. delta_first_last: false
  5955. multi_type: separator
  5956. separator: ', '
  5957. field_api_classes: false
  5958. field_programme:
  5959. id: field_programme
  5960. table: node__field_programme
  5961. field: field_programme
  5962. relationship: none
  5963. group_type: group
  5964. admin_label: ''
  5965. plugin_id: field
  5966. label: 'Programme Popsu'
  5967. exclude: false
  5968. alter:
  5969. alter_text: false
  5970. text: ''
  5971. make_link: false
  5972. path: ''
  5973. absolute: false
  5974. external: false
  5975. replace_spaces: false
  5976. path_case: none
  5977. trim_whitespace: false
  5978. alt: ''
  5979. rel: ''
  5980. link_class: ''
  5981. prefix: ''
  5982. suffix: ''
  5983. target: ''
  5984. nl2br: false
  5985. max_length: 0
  5986. word_boundary: true
  5987. ellipsis: true
  5988. more_link: false
  5989. more_link_text: ''
  5990. more_link_path: ''
  5991. strip_tags: false
  5992. trim: false
  5993. preserve_tags: ''
  5994. html: false
  5995. element_type: ''
  5996. element_class: ''
  5997. element_label_type: ''
  5998. element_label_class: ''
  5999. element_label_colon: true
  6000. element_wrapper_type: ''
  6001. element_wrapper_class: ''
  6002. element_default_classes: true
  6003. empty: ''
  6004. hide_empty: false
  6005. empty_zero: false
  6006. hide_alter_empty: true
  6007. click_sort_column: target_id
  6008. type: entity_reference_label
  6009. settings:
  6010. link: true
  6011. group_column: target_id
  6012. group_columns: { }
  6013. group_rows: true
  6014. delta_limit: 0
  6015. delta_offset: 0
  6016. delta_reversed: false
  6017. delta_first_last: false
  6018. multi_type: separator
  6019. separator: ', '
  6020. field_api_classes: false
  6021. field_projet:
  6022. id: field_projet
  6023. table: node__field_projet
  6024. field: field_projet
  6025. relationship: none
  6026. group_type: group
  6027. admin_label: ''
  6028. plugin_id: field
  6029. label: Projet
  6030. exclude: false
  6031. alter:
  6032. alter_text: false
  6033. text: ''
  6034. make_link: false
  6035. path: ''
  6036. absolute: false
  6037. external: false
  6038. replace_spaces: false
  6039. path_case: none
  6040. trim_whitespace: false
  6041. alt: ''
  6042. rel: ''
  6043. link_class: ''
  6044. prefix: ''
  6045. suffix: ''
  6046. target: ''
  6047. nl2br: false
  6048. max_length: 0
  6049. word_boundary: true
  6050. ellipsis: true
  6051. more_link: false
  6052. more_link_text: ''
  6053. more_link_path: ''
  6054. strip_tags: false
  6055. trim: false
  6056. preserve_tags: ''
  6057. html: false
  6058. element_type: ''
  6059. element_class: ''
  6060. element_label_type: ''
  6061. element_label_class: ''
  6062. element_label_colon: true
  6063. element_wrapper_type: ''
  6064. element_wrapper_class: ''
  6065. element_default_classes: true
  6066. empty: ''
  6067. hide_empty: false
  6068. empty_zero: false
  6069. hide_alter_empty: true
  6070. click_sort_column: target_id
  6071. type: entity_reference_label
  6072. settings:
  6073. link: true
  6074. group_column: target_id
  6075. group_columns: { }
  6076. group_rows: true
  6077. delta_limit: 0
  6078. delta_offset: 0
  6079. delta_reversed: false
  6080. delta_first_last: false
  6081. multi_type: separator
  6082. separator: ', '
  6083. field_api_classes: false
  6084. field_theme:
  6085. id: field_theme
  6086. table: node__field_theme
  6087. field: field_theme
  6088. relationship: none
  6089. group_type: group
  6090. admin_label: ''
  6091. plugin_id: field
  6092. label: Thème
  6093. exclude: false
  6094. alter:
  6095. alter_text: false
  6096. text: ''
  6097. make_link: false
  6098. path: ''
  6099. absolute: false
  6100. external: false
  6101. replace_spaces: false
  6102. path_case: none
  6103. trim_whitespace: false
  6104. alt: ''
  6105. rel: ''
  6106. link_class: ''
  6107. prefix: ''
  6108. suffix: ''
  6109. target: ''
  6110. nl2br: false
  6111. max_length: 0
  6112. word_boundary: true
  6113. ellipsis: true
  6114. more_link: false
  6115. more_link_text: ''
  6116. more_link_path: ''
  6117. strip_tags: false
  6118. trim: false
  6119. preserve_tags: ''
  6120. html: false
  6121. element_type: ''
  6122. element_class: ''
  6123. element_label_type: ''
  6124. element_label_class: ''
  6125. element_label_colon: true
  6126. element_wrapper_type: ''
  6127. element_wrapper_class: ''
  6128. element_default_classes: true
  6129. empty: ''
  6130. hide_empty: false
  6131. empty_zero: false
  6132. hide_alter_empty: true
  6133. click_sort_column: target_id
  6134. type: entity_reference_label
  6135. settings:
  6136. link: true
  6137. group_column: target_id
  6138. group_columns: { }
  6139. group_rows: true
  6140. delta_limit: 0
  6141. delta_offset: 0
  6142. delta_reversed: false
  6143. delta_first_last: false
  6144. multi_type: separator
  6145. separator: ', '
  6146. field_api_classes: false
  6147. status:
  6148. id: status
  6149. table: node_field_data
  6150. field: status
  6151. entity_type: node
  6152. entity_field: status
  6153. plugin_id: field
  6154. label: État
  6155. exclude: false
  6156. alter:
  6157. alter_text: false
  6158. element_class: ''
  6159. element_default_classes: true
  6160. empty: ''
  6161. hide_empty: false
  6162. empty_zero: false
  6163. hide_alter_empty: true
  6164. type: boolean
  6165. settings:
  6166. format: custom
  6167. format_custom_false: 'Non publié'
  6168. format_custom_true: Publié
  6169. promote:
  6170. id: promote
  6171. table: node_field_data
  6172. field: promote
  6173. relationship: none
  6174. group_type: group
  6175. admin_label: ''
  6176. entity_type: node
  6177. entity_field: promote
  6178. plugin_id: field
  6179. label: Home
  6180. exclude: false
  6181. alter:
  6182. alter_text: false
  6183. text: ''
  6184. make_link: false
  6185. path: ''
  6186. absolute: false
  6187. external: false
  6188. replace_spaces: false
  6189. path_case: none
  6190. trim_whitespace: false
  6191. alt: ''
  6192. rel: ''
  6193. link_class: ''
  6194. prefix: ''
  6195. suffix: ''
  6196. target: ''
  6197. nl2br: false
  6198. max_length: 0
  6199. word_boundary: true
  6200. ellipsis: true
  6201. more_link: false
  6202. more_link_text: ''
  6203. more_link_path: ''
  6204. strip_tags: false
  6205. trim: false
  6206. preserve_tags: ''
  6207. html: false
  6208. element_type: ''
  6209. element_class: ''
  6210. element_label_type: ''
  6211. element_label_class: ''
  6212. element_label_colon: true
  6213. element_wrapper_type: ''
  6214. element_wrapper_class: ''
  6215. element_default_classes: true
  6216. empty: ''
  6217. hide_empty: false
  6218. empty_zero: false
  6219. hide_alter_empty: true
  6220. click_sort_column: value
  6221. type: boolean
  6222. settings:
  6223. format: unicode-yes-no
  6224. format_custom_false: ''
  6225. format_custom_true: ''
  6226. group_column: value
  6227. group_columns: { }
  6228. group_rows: true
  6229. delta_limit: 0
  6230. delta_offset: 0
  6231. delta_reversed: false
  6232. delta_first_last: false
  6233. multi_type: separator
  6234. separator: ', '
  6235. field_api_classes: false
  6236. changed:
  6237. id: changed
  6238. table: node_field_data
  6239. field: changed
  6240. entity_type: node
  6241. entity_field: changed
  6242. plugin_id: field
  6243. label: 'Mis à jour'
  6244. exclude: false
  6245. alter:
  6246. alter_text: false
  6247. element_class: ''
  6248. element_default_classes: true
  6249. empty: ''
  6250. hide_empty: false
  6251. empty_zero: false
  6252. hide_alter_empty: true
  6253. type: timestamp
  6254. settings:
  6255. date_format: short
  6256. custom_date_format: ''
  6257. timezone: ''
  6258. field_memo:
  6259. id: field_memo
  6260. table: node__field_memo
  6261. field: field_memo
  6262. relationship: none
  6263. group_type: group
  6264. admin_label: ''
  6265. plugin_id: field
  6266. label: memo
  6267. exclude: false
  6268. alter:
  6269. alter_text: false
  6270. text: ''
  6271. make_link: false
  6272. path: ''
  6273. absolute: false
  6274. external: false
  6275. replace_spaces: false
  6276. path_case: none
  6277. trim_whitespace: false
  6278. alt: ''
  6279. rel: ''
  6280. link_class: ''
  6281. prefix: ''
  6282. suffix: ''
  6283. target: ''
  6284. nl2br: false
  6285. max_length: 0
  6286. word_boundary: true
  6287. ellipsis: true
  6288. more_link: false
  6289. more_link_text: ''
  6290. more_link_path: ''
  6291. strip_tags: false
  6292. trim: false
  6293. preserve_tags: ''
  6294. html: false
  6295. element_type: ''
  6296. element_class: ''
  6297. element_label_type: ''
  6298. element_label_class: ''
  6299. element_label_colon: true
  6300. element_wrapper_type: ''
  6301. element_wrapper_class: ''
  6302. element_default_classes: true
  6303. empty: ''
  6304. hide_empty: false
  6305. empty_zero: false
  6306. hide_alter_empty: true
  6307. click_sort_column: value
  6308. type: basic_string
  6309. settings: { }
  6310. group_column: value
  6311. group_columns: { }
  6312. group_rows: true
  6313. delta_limit: 0
  6314. delta_offset: 0
  6315. delta_reversed: false
  6316. delta_first_last: false
  6317. multi_type: separator
  6318. separator: ', '
  6319. field_api_classes: false
  6320. filters:
  6321. title:
  6322. id: title
  6323. table: node_field_data
  6324. field: title
  6325. relationship: none
  6326. group_type: group
  6327. admin_label: ''
  6328. entity_type: node
  6329. entity_field: title
  6330. plugin_id: string
  6331. operator: contains
  6332. value: ''
  6333. group: 1
  6334. exposed: true
  6335. expose:
  6336. operator_id: title_op
  6337. label: Titre
  6338. description: ''
  6339. use_operator: false
  6340. operator: title_op
  6341. operator_limit_selection: false
  6342. operator_list: { }
  6343. identifier: title
  6344. required: false
  6345. remember: false
  6346. multiple: false
  6347. remember_roles:
  6348. authenticated: authenticated
  6349. anonymous: '0'
  6350. administrator: '0'
  6351. is_grouped: false
  6352. group_info:
  6353. label: ''
  6354. description: ''
  6355. identifier: ''
  6356. optional: true
  6357. widget: select
  6358. multiple: false
  6359. remember: false
  6360. default_group: All
  6361. default_group_multiple: { }
  6362. group_items: { }
  6363. type:
  6364. id: type
  6365. table: node_field_data
  6366. field: type
  6367. relationship: none
  6368. group_type: group
  6369. admin_label: ''
  6370. entity_type: node
  6371. entity_field: type
  6372. plugin_id: bundle
  6373. operator: in
  6374. value:
  6375. actualite: actualite
  6376. group: 1
  6377. exposed: false
  6378. expose:
  6379. operator_id: type_op
  6380. label: 'Type de contenu'
  6381. description: ''
  6382. use_operator: false
  6383. operator: type_op
  6384. operator_limit_selection: false
  6385. operator_list: { }
  6386. identifier: type
  6387. required: false
  6388. remember: false
  6389. multiple: false
  6390. remember_roles:
  6391. authenticated: authenticated
  6392. anonymous: '0'
  6393. administrator: '0'
  6394. reduce: false
  6395. is_grouped: false
  6396. group_info:
  6397. label: ''
  6398. description: ''
  6399. identifier: ''
  6400. optional: true
  6401. widget: select
  6402. multiple: false
  6403. remember: false
  6404. default_group: All
  6405. default_group_multiple: { }
  6406. group_items: { }
  6407. status:
  6408. id: status
  6409. table: node_field_data
  6410. field: status
  6411. relationship: none
  6412. group_type: group
  6413. admin_label: ''
  6414. entity_type: node
  6415. entity_field: status
  6416. plugin_id: boolean
  6417. operator: '='
  6418. value: '1'
  6419. group: 1
  6420. exposed: true
  6421. expose:
  6422. operator_id: ''
  6423. label: État
  6424. description: ''
  6425. use_operator: false
  6426. operator: status_op
  6427. operator_limit_selection: false
  6428. operator_list: { }
  6429. identifier: status
  6430. required: false
  6431. remember: false
  6432. multiple: false
  6433. remember_roles:
  6434. authenticated: authenticated
  6435. is_grouped: true
  6436. group_info:
  6437. label: 'Statut de publication'
  6438. description: ''
  6439. identifier: status
  6440. optional: true
  6441. widget: select
  6442. multiple: false
  6443. remember: false
  6444. default_group: All
  6445. default_group_multiple: { }
  6446. group_items:
  6447. 1:
  6448. title: Publié
  6449. operator: '='
  6450. value: '1'
  6451. 2:
  6452. title: 'Non publié'
  6453. operator: '='
  6454. value: '0'
  6455. status_extra:
  6456. id: status_extra
  6457. table: node_field_data
  6458. field: status_extra
  6459. entity_type: node
  6460. plugin_id: node_status
  6461. operator: '='
  6462. value: false
  6463. group: 1
  6464. expose:
  6465. operator_limit_selection: false
  6466. operator_list: { }
  6467. field_programme_target_id:
  6468. id: field_programme_target_id
  6469. table: node__field_programme
  6470. field: field_programme_target_id
  6471. relationship: none
  6472. group_type: group
  6473. admin_label: ''
  6474. plugin_id: numeric
  6475. operator: or
  6476. value: { }
  6477. group: 1
  6478. exposed: true
  6479. expose:
  6480. operator_id: field_programme_target_id_op
  6481. label: 'Programme Popsu'
  6482. description: ''
  6483. use_operator: false
  6484. operator: field_programme_target_id_op
  6485. operator_limit_selection: false
  6486. operator_list: { }
  6487. identifier: field_programme_target_id
  6488. required: false
  6489. remember: false
  6490. multiple: false
  6491. remember_roles:
  6492. authenticated: authenticated
  6493. anonymous: '0'
  6494. admin: '0'
  6495. root: '0'
  6496. user: '0'
  6497. editeur: '0'
  6498. min_placeholder: ''
  6499. max_placeholder: ''
  6500. placeholder: ''
  6501. reduce: 0
  6502. is_grouped: false
  6503. group_info:
  6504. label: ''
  6505. description: ''
  6506. identifier: ''
  6507. optional: true
  6508. widget: select
  6509. multiple: false
  6510. remember: false
  6511. default_group: All
  6512. default_group_multiple: { }
  6513. group_items: { }
  6514. reduce_duplicates: 0
  6515. handler: 'default:node'
  6516. handler_settings: { }
  6517. widget: autocomplete
  6518. field_memo_value:
  6519. id: field_memo_value
  6520. table: node__field_memo
  6521. field: field_memo_value
  6522. relationship: none
  6523. group_type: group
  6524. admin_label: ''
  6525. plugin_id: string
  6526. operator: contains
  6527. value: ''
  6528. group: 1
  6529. exposed: true
  6530. expose:
  6531. operator_id: field_memo_value_op
  6532. label: memo
  6533. description: ''
  6534. use_operator: false
  6535. operator: field_memo_value_op
  6536. operator_limit_selection: false
  6537. operator_list: { }
  6538. identifier: field_memo_value
  6539. required: false
  6540. remember: false
  6541. multiple: false
  6542. remember_roles:
  6543. authenticated: authenticated
  6544. anonymous: '0'
  6545. admin: '0'
  6546. root: '0'
  6547. user: '0'
  6548. editeur: '0'
  6549. placeholder: ''
  6550. is_grouped: false
  6551. group_info:
  6552. label: ''
  6553. description: ''
  6554. identifier: ''
  6555. optional: true
  6556. widget: select
  6557. multiple: false
  6558. remember: false
  6559. default_group: All
  6560. default_group_multiple: { }
  6561. group_items: { }
  6562. filter_groups:
  6563. operator: AND
  6564. groups:
  6565. 1: AND
  6566. defaults:
  6567. title: false
  6568. fields: false
  6569. filters: false
  6570. filter_groups: false
  6571. display_description: ''
  6572. display_extenders:
  6573. views_ef_fieldset: { }
  6574. path: admin/content/actualites
  6575. menu:
  6576. type: tab
  6577. title: Actualites
  6578. description: ''
  6579. weight: -10
  6580. expanded: false
  6581. menu_name: admin
  6582. parent: system.admin_content
  6583. context: '0'
  6584. tab_options:
  6585. type: normal
  6586. title: Contenu
  6587. description: 'Trouver et gérer le contenu'
  6588. weight: -10
  6589. menu_name: admin
  6590. cache_metadata:
  6591. max-age: 0
  6592. contexts:
  6593. - 'languages:language_content'
  6594. - 'languages:language_interface'
  6595. - url
  6596. - url.query_args
  6597. - user
  6598. - 'user.node_grants:view'
  6599. - user.permissions
  6600. tags:
  6601. - 'config:field.storage.node.field_dates_actu'
  6602. - 'config:field.storage.node.field_image'
  6603. - 'config:field.storage.node.field_memo'
  6604. - 'config:field.storage.node.field_programme'
  6605. - 'config:field.storage.node.field_projet'
  6606. - 'config:field.storage.node.field_theme'