views.view.content.yml 174 KB

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