views.view.content.yml 172 KB

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