views.view.content.yml 163 KB

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