views.view.content.yml 186 KB

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