views.view.content.yml 188 KB

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