views.view.content.yml 156 KB

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