views.view.content.yml 157 KB

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