views.view.content.yml 182 KB

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