views.view.content.yml 175 KB

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