views.view.content.yml 178 KB

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