views.view.content.yml 177 KB

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