views.view.content.yml 161 KB

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