views.view.content.yml 165 KB

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