views.view.content.yml 145 KB

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