views.view.content.yml 161 KB

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