views.view.content.yml 159 KB

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