views.view.content.yml 172 KB

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