views.view.content.yml 177 KB

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