views.view.content.yml 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275
  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.page_type
  32. - user.role.admin
  33. - user.role.collectionneur
  34. - user.role.root
  35. module:
  36. - audiofield
  37. - datetime_range
  38. - image
  39. - node
  40. - options
  41. - taxonomy
  42. - text
  43. - user
  44. - workflow
  45. _core:
  46. default_config_hash: YIwhIF9MSP1E_HMam6MrYeti_UqMXQiLDMjDsPFKK8s
  47. id: content
  48. label: Content
  49. module: node
  50. description: 'Find and manage content.'
  51. tag: default
  52. base_table: node_field_data
  53. base_field: nid
  54. core: 8.x
  55. display:
  56. default:
  57. display_options:
  58. access:
  59. type: role
  60. options:
  61. role:
  62. collectionneur: collectionneur
  63. admin: admin
  64. root: root
  65. cache:
  66. type: tag
  67. query:
  68. type: views_query
  69. options:
  70. disable_sql_rewrite: false
  71. distinct: true
  72. replica: false
  73. query_comment: ''
  74. query_tags: { }
  75. exposed_form:
  76. type: basic
  77. options:
  78. submit_button: Filter
  79. reset_button: true
  80. reset_button_label: Reset
  81. exposed_sorts_label: 'Sort by'
  82. expose_sort_order: true
  83. sort_asc_label: Asc
  84. sort_desc_label: Desc
  85. pager:
  86. type: full
  87. options:
  88. items_per_page: 50
  89. tags:
  90. previous: '‹ Previous'
  91. next: 'Suivant ›'
  92. first: '« First'
  93. last: 'Last »'
  94. style:
  95. type: table
  96. options:
  97. grouping: { }
  98. row_class: ''
  99. default_row_class: true
  100. override: true
  101. sticky: true
  102. caption: ''
  103. summary: ''
  104. description: ''
  105. columns:
  106. title: title
  107. field_son: title
  108. status: status
  109. field_workflow: title
  110. operations: title
  111. field_description: field_description
  112. field_nbr_locuteurs: field_nbr_locuteurs
  113. body: body
  114. field_entrees: field_entrees
  115. field_genres: field_genres
  116. field_langues: field_langues
  117. name: name
  118. changed: changed
  119. field_collectionneurs: field_collectionneurs
  120. field_locuteurs: field_locuteurs
  121. info:
  122. title:
  123. sortable: true
  124. default_sort_order: asc
  125. align: ''
  126. separator: '<br/>'
  127. empty_column: false
  128. responsive: ''
  129. field_son:
  130. align: ''
  131. separator: ''
  132. empty_column: false
  133. responsive: ''
  134. status:
  135. sortable: true
  136. default_sort_order: asc
  137. align: ''
  138. separator: ''
  139. empty_column: false
  140. responsive: ''
  141. field_workflow:
  142. sortable: false
  143. default_sort_order: asc
  144. align: ''
  145. separator: ''
  146. empty_column: false
  147. responsive: ''
  148. operations:
  149. align: ''
  150. separator: ''
  151. empty_column: false
  152. responsive: ''
  153. field_description:
  154. sortable: false
  155. default_sort_order: asc
  156. align: ''
  157. separator: ''
  158. empty_column: false
  159. responsive: ''
  160. field_nbr_locuteurs:
  161. sortable: false
  162. default_sort_order: asc
  163. align: ''
  164. separator: ''
  165. empty_column: false
  166. responsive: ''
  167. body:
  168. sortable: false
  169. default_sort_order: asc
  170. align: ''
  171. separator: ''
  172. empty_column: false
  173. responsive: ''
  174. field_entrees:
  175. align: ''
  176. separator: ''
  177. empty_column: false
  178. responsive: ''
  179. field_genres:
  180. align: ''
  181. separator: ''
  182. empty_column: false
  183. responsive: ''
  184. field_langues:
  185. align: ''
  186. separator: ''
  187. empty_column: false
  188. responsive: ''
  189. name:
  190. sortable: false
  191. default_sort_order: asc
  192. align: ''
  193. separator: ''
  194. empty_column: false
  195. responsive: priority-low
  196. changed:
  197. sortable: true
  198. default_sort_order: desc
  199. align: ''
  200. separator: ''
  201. empty_column: false
  202. responsive: priority-low
  203. field_collectionneurs:
  204. align: ''
  205. separator: ''
  206. empty_column: false
  207. responsive: ''
  208. field_locuteurs:
  209. align: ''
  210. separator: ''
  211. empty_column: false
  212. responsive: ''
  213. default: changed
  214. empty_table: true
  215. row:
  216. type: fields
  217. fields:
  218. node_bulk_form:
  219. id: node_bulk_form
  220. table: node
  221. field: node_bulk_form
  222. label: ''
  223. exclude: false
  224. alter:
  225. alter_text: false
  226. element_class: ''
  227. element_default_classes: true
  228. empty: ''
  229. hide_empty: false
  230. empty_zero: false
  231. hide_alter_empty: true
  232. plugin_id: node_bulk_form
  233. entity_type: node
  234. field_visuel:
  235. id: field_visuel
  236. table: node__field_visuel
  237. field: field_visuel
  238. relationship: none
  239. group_type: group
  240. admin_label: ''
  241. label: Visuel
  242. exclude: false
  243. alter:
  244. alter_text: false
  245. text: ''
  246. make_link: false
  247. path: ''
  248. absolute: false
  249. external: false
  250. replace_spaces: false
  251. path_case: none
  252. trim_whitespace: false
  253. alt: ''
  254. rel: ''
  255. link_class: ''
  256. prefix: ''
  257. suffix: ''
  258. target: ''
  259. nl2br: false
  260. max_length: 0
  261. word_boundary: true
  262. ellipsis: true
  263. more_link: false
  264. more_link_text: ''
  265. more_link_path: ''
  266. strip_tags: false
  267. trim: false
  268. preserve_tags: ''
  269. html: false
  270. element_type: ''
  271. element_class: ''
  272. element_label_type: ''
  273. element_label_class: ''
  274. element_label_colon: true
  275. element_wrapper_type: ''
  276. element_wrapper_class: ''
  277. element_default_classes: true
  278. empty: ''
  279. hide_empty: false
  280. empty_zero: false
  281. hide_alter_empty: true
  282. click_sort_column: target_id
  283. type: image
  284. settings:
  285. image_style: thumbnail
  286. image_link: ''
  287. group_column: ''
  288. group_columns: { }
  289. group_rows: true
  290. delta_limit: 0
  291. delta_offset: 0
  292. delta_reversed: false
  293. delta_first_last: false
  294. multi_type: separator
  295. separator: ', '
  296. field_api_classes: false
  297. plugin_id: field
  298. type:
  299. id: type
  300. table: node_field_data
  301. field: type
  302. relationship: none
  303. group_type: group
  304. admin_label: ''
  305. label: 'Content type'
  306. exclude: false
  307. alter:
  308. alter_text: false
  309. text: ''
  310. make_link: false
  311. path: ''
  312. absolute: false
  313. external: false
  314. replace_spaces: false
  315. path_case: none
  316. trim_whitespace: false
  317. alt: ''
  318. rel: ''
  319. link_class: ''
  320. prefix: ''
  321. suffix: ''
  322. target: ''
  323. nl2br: false
  324. max_length: 0
  325. word_boundary: true
  326. ellipsis: true
  327. more_link: false
  328. more_link_text: ''
  329. more_link_path: ''
  330. strip_tags: false
  331. trim: false
  332. preserve_tags: ''
  333. html: false
  334. element_type: ''
  335. element_class: ''
  336. element_label_type: ''
  337. element_label_class: ''
  338. element_label_colon: true
  339. element_wrapper_type: ''
  340. element_wrapper_class: ''
  341. element_default_classes: true
  342. empty: ''
  343. hide_empty: false
  344. empty_zero: false
  345. hide_alter_empty: true
  346. click_sort_column: target_id
  347. type: entity_reference_label
  348. settings:
  349. link: false
  350. group_column: target_id
  351. group_columns: { }
  352. group_rows: true
  353. delta_limit: 0
  354. delta_offset: 0
  355. delta_reversed: false
  356. delta_first_last: false
  357. multi_type: separator
  358. separator: ', '
  359. field_api_classes: false
  360. entity_type: node
  361. entity_field: type
  362. plugin_id: field
  363. field_page_type:
  364. id: field_page_type
  365. table: node__field_page_type
  366. field: field_page_type
  367. relationship: none
  368. group_type: group
  369. admin_label: ''
  370. label: 'Type de page'
  371. exclude: false
  372. alter:
  373. alter_text: false
  374. text: ''
  375. make_link: false
  376. path: ''
  377. absolute: false
  378. external: false
  379. replace_spaces: false
  380. path_case: none
  381. trim_whitespace: false
  382. alt: ''
  383. rel: ''
  384. link_class: ''
  385. prefix: ''
  386. suffix: ''
  387. target: ''
  388. nl2br: false
  389. max_length: 0
  390. word_boundary: true
  391. ellipsis: true
  392. more_link: false
  393. more_link_text: ''
  394. more_link_path: ''
  395. strip_tags: false
  396. trim: false
  397. preserve_tags: ''
  398. html: false
  399. element_type: ''
  400. element_class: ''
  401. element_label_type: ''
  402. element_label_class: ''
  403. element_label_colon: true
  404. element_wrapper_type: ''
  405. element_wrapper_class: ''
  406. element_default_classes: true
  407. empty: ''
  408. hide_empty: false
  409. empty_zero: false
  410. hide_alter_empty: true
  411. click_sort_column: target_id
  412. type: entity_reference_label
  413. settings:
  414. link: false
  415. group_column: target_id
  416. group_columns: { }
  417. group_rows: true
  418. delta_limit: 0
  419. delta_offset: 0
  420. delta_reversed: false
  421. delta_first_last: false
  422. multi_type: separator
  423. separator: ', '
  424. field_api_classes: false
  425. plugin_id: field
  426. title:
  427. id: title
  428. table: node_field_data
  429. field: title
  430. label: Title
  431. exclude: false
  432. alter:
  433. alter_text: false
  434. element_class: ''
  435. element_default_classes: true
  436. empty: ''
  437. hide_empty: false
  438. empty_zero: false
  439. hide_alter_empty: true
  440. entity_type: node
  441. entity_field: title
  442. type: string
  443. settings:
  444. link_to_entity: true
  445. plugin_id: field
  446. field_son:
  447. id: field_son
  448. table: node__field_son
  449. field: field_son
  450. relationship: none
  451. group_type: group
  452. admin_label: ''
  453. label: Son
  454. exclude: false
  455. alter:
  456. alter_text: false
  457. text: ''
  458. make_link: false
  459. path: ''
  460. absolute: false
  461. external: false
  462. replace_spaces: false
  463. path_case: none
  464. trim_whitespace: false
  465. alt: ''
  466. rel: ''
  467. link_class: ''
  468. prefix: ''
  469. suffix: ''
  470. target: ''
  471. nl2br: false
  472. max_length: 0
  473. word_boundary: true
  474. ellipsis: true
  475. more_link: false
  476. more_link_text: ''
  477. more_link_path: ''
  478. strip_tags: false
  479. trim: false
  480. preserve_tags: ''
  481. html: false
  482. element_type: ''
  483. element_class: ''
  484. element_label_type: ''
  485. element_label_class: ''
  486. element_label_colon: true
  487. element_wrapper_type: ''
  488. element_wrapper_class: ''
  489. element_default_classes: true
  490. empty: ''
  491. hide_empty: false
  492. empty_zero: false
  493. hide_alter_empty: true
  494. click_sort_column: target_id
  495. type: audiofield_audioplayer
  496. settings:
  497. audio_player: default_mp3_player
  498. audio_player_jplayer_theme: none
  499. audio_player_wavesurfer_combine_files: 0
  500. audio_player_wordpress_combine_files: 0
  501. audio_player_wordpress_animation: 0
  502. audio_player_soundmanager_theme: default
  503. audio_player_initial_volume: '8'
  504. audio_player_autoplay: 0
  505. download_link: 0
  506. group_column: ''
  507. group_columns: { }
  508. group_rows: true
  509. delta_limit: 0
  510. delta_offset: 0
  511. delta_reversed: false
  512. delta_first_last: false
  513. multi_type: separator
  514. separator: ', '
  515. field_api_classes: false
  516. plugin_id: field
  517. term_node_tid:
  518. id: term_node_tid
  519. table: node_field_data
  520. field: term_node_tid
  521. relationship: none
  522. group_type: group
  523. admin_label: ''
  524. label: Entrées
  525. exclude: false
  526. alter:
  527. alter_text: false
  528. text: ''
  529. make_link: false
  530. path: ''
  531. absolute: false
  532. external: false
  533. replace_spaces: false
  534. path_case: none
  535. trim_whitespace: false
  536. alt: ''
  537. rel: ''
  538. link_class: ''
  539. prefix: ''
  540. suffix: ''
  541. target: ''
  542. nl2br: false
  543. max_length: 0
  544. word_boundary: true
  545. ellipsis: true
  546. more_link: false
  547. more_link_text: ''
  548. more_link_path: ''
  549. strip_tags: false
  550. trim: false
  551. preserve_tags: ''
  552. html: false
  553. element_type: ''
  554. element_class: ''
  555. element_label_type: ''
  556. element_label_class: ''
  557. element_label_colon: true
  558. element_wrapper_type: ''
  559. element_wrapper_class: ''
  560. element_default_classes: true
  561. empty: ''
  562. hide_empty: false
  563. empty_zero: false
  564. hide_alter_empty: true
  565. type: ul
  566. separator: ', '
  567. link_to_taxonomy: false
  568. limit: true
  569. vids:
  570. entrees: entrees
  571. collectionneurs: '0'
  572. genres: '0'
  573. langues: '0'
  574. locuteurs: '0'
  575. page_type: '0'
  576. entity_type: node
  577. plugin_id: taxonomy_index_tid
  578. name:
  579. id: name
  580. table: users_field_data
  581. field: name
  582. relationship: uid
  583. label: Author
  584. exclude: false
  585. alter:
  586. alter_text: false
  587. element_class: ''
  588. element_default_classes: true
  589. empty: ''
  590. hide_empty: false
  591. empty_zero: false
  592. hide_alter_empty: true
  593. plugin_id: field
  594. type: user_name
  595. entity_type: user
  596. entity_field: name
  597. changed:
  598. id: changed
  599. table: node_field_data
  600. field: changed
  601. label: Updated
  602. exclude: false
  603. alter:
  604. alter_text: false
  605. element_class: ''
  606. element_default_classes: true
  607. empty: ''
  608. hide_empty: false
  609. empty_zero: false
  610. hide_alter_empty: true
  611. type: timestamp
  612. settings:
  613. date_format: short
  614. custom_date_format: ''
  615. timezone: ''
  616. plugin_id: field
  617. entity_type: node
  618. entity_field: changed
  619. status:
  620. id: status
  621. table: node_field_data
  622. field: status
  623. label: Status
  624. exclude: false
  625. alter:
  626. alter_text: false
  627. element_class: ''
  628. element_default_classes: true
  629. empty: ''
  630. hide_empty: false
  631. empty_zero: false
  632. hide_alter_empty: true
  633. type: boolean
  634. settings:
  635. format: custom
  636. format_custom_true: Published
  637. format_custom_false: Unpublished
  638. plugin_id: field
  639. entity_type: node
  640. entity_field: status
  641. operations:
  642. id: operations
  643. table: node
  644. field: operations
  645. relationship: none
  646. group_type: group
  647. admin_label: ''
  648. label: Operations
  649. exclude: false
  650. alter:
  651. alter_text: false
  652. text: ''
  653. make_link: false
  654. path: ''
  655. absolute: false
  656. external: false
  657. replace_spaces: false
  658. path_case: none
  659. trim_whitespace: false
  660. alt: ''
  661. rel: ''
  662. link_class: ''
  663. prefix: ''
  664. suffix: ''
  665. target: ''
  666. nl2br: false
  667. max_length: 0
  668. word_boundary: true
  669. ellipsis: true
  670. more_link: false
  671. more_link_text: ''
  672. more_link_path: ''
  673. strip_tags: false
  674. trim: false
  675. preserve_tags: ''
  676. html: false
  677. element_type: ''
  678. element_class: ''
  679. element_label_type: ''
  680. element_label_class: ''
  681. element_label_colon: true
  682. element_wrapper_type: ''
  683. element_wrapper_class: ''
  684. element_default_classes: true
  685. empty: ''
  686. hide_empty: false
  687. empty_zero: false
  688. hide_alter_empty: true
  689. destination: true
  690. plugin_id: entity_operations
  691. filters:
  692. status_extra:
  693. id: status_extra
  694. table: node_field_data
  695. field: status_extra
  696. operator: '='
  697. value: false
  698. plugin_id: node_status
  699. group: 1
  700. entity_type: node
  701. status:
  702. id: status
  703. table: node_field_data
  704. field: status
  705. relationship: none
  706. group_type: group
  707. admin_label: ''
  708. operator: '='
  709. value: '1'
  710. group: 1
  711. exposed: true
  712. expose:
  713. operator_id: ''
  714. label: Status
  715. description: ''
  716. use_operator: false
  717. operator: status_op
  718. identifier: status
  719. required: false
  720. remember: false
  721. multiple: false
  722. remember_roles:
  723. authenticated: authenticated
  724. is_grouped: true
  725. group_info:
  726. label: 'Published status'
  727. description: ''
  728. identifier: status
  729. optional: true
  730. widget: select
  731. multiple: false
  732. remember: false
  733. default_group: All
  734. default_group_multiple: { }
  735. group_items:
  736. 1:
  737. title: Published
  738. operator: '='
  739. value: '1'
  740. 2:
  741. title: Unpublished
  742. operator: '='
  743. value: '0'
  744. plugin_id: boolean
  745. entity_type: node
  746. entity_field: status
  747. type:
  748. id: type
  749. table: node_field_data
  750. field: type
  751. relationship: none
  752. group_type: group
  753. admin_label: ''
  754. operator: in
  755. value:
  756. autre_son: autre_son
  757. fil: fil
  758. page: page
  759. evenement: evenement
  760. group: 1
  761. exposed: false
  762. expose:
  763. operator_id: type_op
  764. label: 'Content type'
  765. description: ''
  766. use_operator: false
  767. operator: type_op
  768. identifier: type
  769. required: false
  770. remember: false
  771. multiple: false
  772. remember_roles:
  773. authenticated: authenticated
  774. anonymous: '0'
  775. collectionneur: '0'
  776. admin: '0'
  777. root: '0'
  778. invite: '0'
  779. reduce: true
  780. is_grouped: false
  781. group_info:
  782. label: ''
  783. description: ''
  784. identifier: ''
  785. optional: true
  786. widget: select
  787. multiple: false
  788. remember: false
  789. default_group: All
  790. default_group_multiple: { }
  791. group_items: { }
  792. plugin_id: bundle
  793. entity_type: node
  794. entity_field: type
  795. title:
  796. id: title
  797. table: node_field_data
  798. field: title
  799. relationship: none
  800. group_type: group
  801. admin_label: ''
  802. operator: contains
  803. value: ''
  804. group: 1
  805. exposed: true
  806. expose:
  807. operator_id: title_op
  808. label: Title
  809. description: ''
  810. use_operator: false
  811. operator: title_op
  812. identifier: title
  813. required: false
  814. remember: false
  815. multiple: false
  816. remember_roles:
  817. authenticated: authenticated
  818. anonymous: '0'
  819. administrator: '0'
  820. placeholder: ''
  821. is_grouped: false
  822. group_info:
  823. label: ''
  824. description: ''
  825. identifier: ''
  826. optional: true
  827. widget: select
  828. multiple: false
  829. remember: false
  830. default_group: All
  831. default_group_multiple: { }
  832. group_items: { }
  833. plugin_id: string
  834. entity_type: node
  835. entity_field: title
  836. type_1:
  837. id: type_1
  838. table: node_field_data
  839. field: type
  840. relationship: none
  841. group_type: group
  842. admin_label: ''
  843. operator: 'not in'
  844. value:
  845. enregistrement: enregistrement
  846. group: 1
  847. exposed: false
  848. expose:
  849. operator_id: ''
  850. label: ''
  851. description: ''
  852. use_operator: false
  853. operator: ''
  854. identifier: ''
  855. required: false
  856. remember: false
  857. multiple: false
  858. remember_roles:
  859. authenticated: authenticated
  860. reduce: false
  861. is_grouped: false
  862. group_info:
  863. label: ''
  864. description: ''
  865. identifier: ''
  866. optional: true
  867. widget: select
  868. multiple: false
  869. remember: false
  870. default_group: All
  871. default_group_multiple: { }
  872. group_items: { }
  873. entity_type: node
  874. entity_field: type
  875. plugin_id: bundle
  876. field_page_type_target_id:
  877. id: field_page_type_target_id
  878. table: node__field_page_type
  879. field: field_page_type_target_id
  880. relationship: none
  881. group_type: group
  882. admin_label: ''
  883. operator: or
  884. value: { }
  885. group: 1
  886. exposed: true
  887. expose:
  888. operator_id: field_page_type_target_id_op
  889. label: 'Type de page (field_page_type)'
  890. description: ''
  891. use_operator: false
  892. operator: field_page_type_target_id_op
  893. identifier: field_page_type_target_id
  894. required: false
  895. remember: false
  896. multiple: false
  897. remember_roles:
  898. authenticated: authenticated
  899. anonymous: '0'
  900. collectionneur: '0'
  901. admin: '0'
  902. root: '0'
  903. reduce: false
  904. is_grouped: false
  905. group_info:
  906. label: ''
  907. description: ''
  908. identifier: ''
  909. optional: true
  910. widget: select
  911. multiple: false
  912. remember: false
  913. default_group: All
  914. default_group_multiple: { }
  915. group_items: { }
  916. reduce_duplicates: false
  917. type: select
  918. limit: true
  919. vid: page_type
  920. hierarchy: false
  921. error_message: true
  922. plugin_id: taxonomy_index_tid
  923. sorts: { }
  924. title: Content
  925. empty:
  926. area_text_custom:
  927. id: area_text_custom
  928. table: views
  929. field: area_text_custom
  930. empty: true
  931. content: 'No content available.'
  932. plugin_id: text_custom
  933. arguments: { }
  934. relationships:
  935. uid:
  936. id: uid
  937. table: node_field_data
  938. field: uid
  939. admin_label: author
  940. required: true
  941. plugin_id: standard
  942. show_admin_links: false
  943. filter_groups:
  944. operator: AND
  945. groups:
  946. 1: AND
  947. display_extenders: { }
  948. header:
  949. result:
  950. id: result
  951. table: views
  952. field: result
  953. relationship: none
  954. group_type: group
  955. admin_label: ''
  956. empty: false
  957. content: 'Affichage de @start à @end sur @total'
  958. plugin_id: result
  959. display_plugin: default
  960. display_title: Master
  961. id: default
  962. position: 0
  963. cache_metadata:
  964. contexts:
  965. - 'languages:language_content'
  966. - 'languages:language_interface'
  967. - url
  968. - url.query_args
  969. - user
  970. - 'user.node_grants:view'
  971. - user.roles
  972. max-age: 0
  973. tags:
  974. - 'config:field.storage.node.field_page_type'
  975. - 'config:field.storage.node.field_son'
  976. - 'config:field.storage.node.field_visuel'
  977. page_1:
  978. display_options:
  979. path: admin/content/production
  980. menu:
  981. type: tab
  982. title: Production
  983. description: ''
  984. expanded: false
  985. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  986. weight: -98
  987. context: '0'
  988. menu_name: admin
  989. tab_options:
  990. type: normal
  991. title: Content
  992. description: 'Find and manage content'
  993. menu_name: admin
  994. weight: -10
  995. display_extenders: { }
  996. display_description: ''
  997. access:
  998. type: role
  999. options:
  1000. role:
  1001. admin: admin
  1002. root: root
  1003. defaults:
  1004. access: false
  1005. filters: false
  1006. filter_groups: false
  1007. fields: false
  1008. title: false
  1009. filters:
  1010. status_extra:
  1011. id: status_extra
  1012. table: node_field_data
  1013. field: status_extra
  1014. operator: '='
  1015. value: false
  1016. plugin_id: node_status
  1017. group: 1
  1018. entity_type: node
  1019. field_workflow_generic_value:
  1020. id: field_workflow_generic_value
  1021. table: node__field_workflow_generic
  1022. field: field_workflow_generic_value
  1023. relationship: none
  1024. group_type: group
  1025. admin_label: ''
  1026. operator: or
  1027. value: { }
  1028. group: 1
  1029. exposed: true
  1030. expose:
  1031. operator_id: field_workflow_generic_value_op
  1032. label: Workflow
  1033. description: ''
  1034. use_operator: false
  1035. operator: field_workflow_generic_value_op
  1036. identifier: field_workflow_generic_value
  1037. required: false
  1038. remember: false
  1039. multiple: false
  1040. remember_roles:
  1041. authenticated: authenticated
  1042. anonymous: '0'
  1043. collectionneur: '0'
  1044. admin: '0'
  1045. root: '0'
  1046. invite: '0'
  1047. reduce: false
  1048. is_grouped: false
  1049. group_info:
  1050. label: ''
  1051. description: ''
  1052. identifier: ''
  1053. optional: true
  1054. widget: select
  1055. multiple: false
  1056. remember: false
  1057. default_group: All
  1058. default_group_multiple: { }
  1059. group_items: { }
  1060. reduce_duplicates: false
  1061. plugin_id: workflow_state
  1062. type:
  1063. id: type
  1064. table: node_field_data
  1065. field: type
  1066. relationship: none
  1067. group_type: group
  1068. admin_label: ''
  1069. operator: in
  1070. value:
  1071. page: page
  1072. group: 1
  1073. exposed: false
  1074. expose:
  1075. operator_id: type_op
  1076. label: 'Content type'
  1077. description: ''
  1078. use_operator: false
  1079. operator: type_op
  1080. identifier: type
  1081. required: false
  1082. remember: false
  1083. multiple: false
  1084. remember_roles:
  1085. authenticated: authenticated
  1086. anonymous: '0'
  1087. collectionneur: '0'
  1088. admin: '0'
  1089. root: '0'
  1090. invite: '0'
  1091. reduce: true
  1092. is_grouped: false
  1093. group_info:
  1094. label: ''
  1095. description: ''
  1096. identifier: ''
  1097. optional: true
  1098. widget: select
  1099. multiple: false
  1100. remember: false
  1101. default_group: All
  1102. default_group_multiple: { }
  1103. group_items: { }
  1104. plugin_id: bundle
  1105. entity_type: node
  1106. entity_field: type
  1107. field_page_type_target_id:
  1108. id: field_page_type_target_id
  1109. table: node__field_page_type
  1110. field: field_page_type_target_id
  1111. relationship: none
  1112. group_type: group
  1113. admin_label: ''
  1114. operator: or
  1115. value: { }
  1116. group: 1
  1117. exposed: true
  1118. expose:
  1119. operator_id: field_page_type_target_id_op
  1120. label: 'Type de page'
  1121. description: ''
  1122. use_operator: false
  1123. operator: field_page_type_target_id_op
  1124. identifier: field_page_type_target_id
  1125. required: false
  1126. remember: false
  1127. multiple: false
  1128. remember_roles:
  1129. authenticated: authenticated
  1130. anonymous: '0'
  1131. collectionneur: '0'
  1132. admin: '0'
  1133. root: '0'
  1134. invite: '0'
  1135. reduce: false
  1136. is_grouped: false
  1137. group_info:
  1138. label: ''
  1139. description: ''
  1140. identifier: ''
  1141. optional: true
  1142. widget: select
  1143. multiple: false
  1144. remember: false
  1145. default_group: All
  1146. default_group_multiple: { }
  1147. group_items: { }
  1148. reduce_duplicates: false
  1149. type: select
  1150. limit: true
  1151. vid: page_type
  1152. hierarchy: false
  1153. error_message: true
  1154. plugin_id: taxonomy_index_tid
  1155. title:
  1156. id: title
  1157. table: node_field_data
  1158. field: title
  1159. relationship: none
  1160. group_type: group
  1161. admin_label: ''
  1162. operator: contains
  1163. value: ''
  1164. group: 1
  1165. exposed: true
  1166. expose:
  1167. operator_id: title_op
  1168. label: Title
  1169. description: ''
  1170. use_operator: false
  1171. operator: title_op
  1172. identifier: title
  1173. required: false
  1174. remember: false
  1175. multiple: false
  1176. remember_roles:
  1177. authenticated: authenticated
  1178. anonymous: '0'
  1179. administrator: '0'
  1180. placeholder: ''
  1181. is_grouped: false
  1182. group_info:
  1183. label: ''
  1184. description: ''
  1185. identifier: ''
  1186. optional: true
  1187. widget: select
  1188. multiple: false
  1189. remember: false
  1190. default_group: All
  1191. default_group_multiple: { }
  1192. group_items: { }
  1193. plugin_id: string
  1194. entity_type: node
  1195. entity_field: title
  1196. langcode:
  1197. id: langcode
  1198. table: node_field_data
  1199. field: langcode
  1200. relationship: none
  1201. group_type: group
  1202. admin_label: ''
  1203. operator: in
  1204. value:
  1205. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  1206. und: und
  1207. group: 1
  1208. exposed: false
  1209. expose:
  1210. operator_id: ''
  1211. label: ''
  1212. description: ''
  1213. use_operator: false
  1214. operator: ''
  1215. identifier: ''
  1216. required: false
  1217. remember: false
  1218. multiple: false
  1219. remember_roles:
  1220. authenticated: authenticated
  1221. reduce: false
  1222. is_grouped: false
  1223. group_info:
  1224. label: ''
  1225. description: ''
  1226. identifier: ''
  1227. optional: true
  1228. widget: select
  1229. multiple: false
  1230. remember: false
  1231. default_group: All
  1232. default_group_multiple: { }
  1233. group_items: { }
  1234. entity_type: node
  1235. entity_field: langcode
  1236. plugin_id: language
  1237. filter_groups:
  1238. operator: AND
  1239. groups:
  1240. 1: AND
  1241. fields:
  1242. field_visuel:
  1243. id: field_visuel
  1244. table: node__field_visuel
  1245. field: field_visuel
  1246. relationship: none
  1247. group_type: group
  1248. admin_label: ''
  1249. label: Visuel
  1250. exclude: false
  1251. alter:
  1252. alter_text: false
  1253. text: ''
  1254. make_link: false
  1255. path: ''
  1256. absolute: false
  1257. external: false
  1258. replace_spaces: false
  1259. path_case: none
  1260. trim_whitespace: false
  1261. alt: ''
  1262. rel: ''
  1263. link_class: ''
  1264. prefix: ''
  1265. suffix: ''
  1266. target: ''
  1267. nl2br: false
  1268. max_length: 0
  1269. word_boundary: true
  1270. ellipsis: true
  1271. more_link: false
  1272. more_link_text: ''
  1273. more_link_path: ''
  1274. strip_tags: false
  1275. trim: false
  1276. preserve_tags: ''
  1277. html: false
  1278. element_type: ''
  1279. element_class: ''
  1280. element_label_type: ''
  1281. element_label_class: ''
  1282. element_label_colon: true
  1283. element_wrapper_type: ''
  1284. element_wrapper_class: ''
  1285. element_default_classes: true
  1286. empty: ''
  1287. hide_empty: false
  1288. empty_zero: false
  1289. hide_alter_empty: true
  1290. click_sort_column: target_id
  1291. type: image
  1292. settings:
  1293. image_style: thumbnail
  1294. image_link: ''
  1295. group_column: ''
  1296. group_columns: { }
  1297. group_rows: true
  1298. delta_limit: 0
  1299. delta_offset: 0
  1300. delta_reversed: false
  1301. delta_first_last: false
  1302. multi_type: separator
  1303. separator: ', '
  1304. field_api_classes: false
  1305. plugin_id: field
  1306. field_page_type:
  1307. id: field_page_type
  1308. table: node__field_page_type
  1309. field: field_page_type
  1310. relationship: none
  1311. group_type: group
  1312. admin_label: ''
  1313. label: 'Type de page'
  1314. exclude: false
  1315. alter:
  1316. alter_text: false
  1317. text: ''
  1318. make_link: false
  1319. path: ''
  1320. absolute: false
  1321. external: false
  1322. replace_spaces: false
  1323. path_case: none
  1324. trim_whitespace: false
  1325. alt: ''
  1326. rel: ''
  1327. link_class: ''
  1328. prefix: ''
  1329. suffix: ''
  1330. target: ''
  1331. nl2br: false
  1332. max_length: 0
  1333. word_boundary: true
  1334. ellipsis: true
  1335. more_link: false
  1336. more_link_text: ''
  1337. more_link_path: ''
  1338. strip_tags: false
  1339. trim: false
  1340. preserve_tags: ''
  1341. html: false
  1342. element_type: ''
  1343. element_class: ''
  1344. element_label_type: ''
  1345. element_label_class: ''
  1346. element_label_colon: true
  1347. element_wrapper_type: ''
  1348. element_wrapper_class: ''
  1349. element_default_classes: true
  1350. empty: ''
  1351. hide_empty: false
  1352. empty_zero: false
  1353. hide_alter_empty: true
  1354. click_sort_column: target_id
  1355. type: entity_reference_label
  1356. settings:
  1357. link: false
  1358. group_column: target_id
  1359. group_columns: { }
  1360. group_rows: true
  1361. delta_limit: 0
  1362. delta_offset: 0
  1363. delta_reversed: false
  1364. delta_first_last: false
  1365. multi_type: separator
  1366. separator: ', '
  1367. field_api_classes: false
  1368. plugin_id: field
  1369. title:
  1370. id: title
  1371. table: node_field_data
  1372. field: title
  1373. label: Title
  1374. exclude: false
  1375. alter:
  1376. alter_text: false
  1377. element_class: ''
  1378. element_default_classes: true
  1379. empty: ''
  1380. hide_empty: false
  1381. empty_zero: false
  1382. hide_alter_empty: true
  1383. entity_type: node
  1384. entity_field: title
  1385. type: string
  1386. settings:
  1387. link_to_entity: true
  1388. plugin_id: field
  1389. field_view_mode:
  1390. id: field_view_mode
  1391. table: node__field_view_mode
  1392. field: field_view_mode
  1393. relationship: none
  1394. group_type: group
  1395. admin_label: ''
  1396. label: 'Mode d''affichage'
  1397. exclude: false
  1398. alter:
  1399. alter_text: true
  1400. text: 'Affichage : {{ field_view_mode }}'
  1401. make_link: false
  1402. path: ''
  1403. absolute: false
  1404. external: false
  1405. replace_spaces: false
  1406. path_case: none
  1407. trim_whitespace: false
  1408. alt: ''
  1409. rel: ''
  1410. link_class: ''
  1411. prefix: ''
  1412. suffix: ''
  1413. target: ''
  1414. nl2br: false
  1415. max_length: 0
  1416. word_boundary: true
  1417. ellipsis: true
  1418. more_link: false
  1419. more_link_text: ''
  1420. more_link_path: ''
  1421. strip_tags: false
  1422. trim: false
  1423. preserve_tags: ''
  1424. html: false
  1425. element_type: ''
  1426. element_class: ''
  1427. element_label_type: ''
  1428. element_label_class: ''
  1429. element_label_colon: true
  1430. element_wrapper_type: ''
  1431. element_wrapper_class: ''
  1432. element_default_classes: true
  1433. empty: ''
  1434. hide_empty: false
  1435. empty_zero: false
  1436. hide_alter_empty: true
  1437. click_sort_column: value
  1438. type: list_default
  1439. settings: { }
  1440. group_column: value
  1441. group_columns: { }
  1442. group_rows: true
  1443. delta_limit: 0
  1444. delta_offset: 0
  1445. delta_reversed: false
  1446. delta_first_last: false
  1447. multi_type: separator
  1448. separator: ', '
  1449. field_api_classes: false
  1450. plugin_id: field
  1451. field_workflow_generic:
  1452. id: field_workflow_generic
  1453. table: node__field_workflow_generic
  1454. field: field_workflow_generic
  1455. relationship: none
  1456. group_type: group
  1457. admin_label: ''
  1458. label: Workflow
  1459. exclude: false
  1460. alter:
  1461. alter_text: false
  1462. text: ''
  1463. make_link: false
  1464. path: ''
  1465. absolute: false
  1466. external: false
  1467. replace_spaces: false
  1468. path_case: none
  1469. trim_whitespace: false
  1470. alt: ''
  1471. rel: ''
  1472. link_class: ''
  1473. prefix: ''
  1474. suffix: ''
  1475. target: ''
  1476. nl2br: false
  1477. max_length: 0
  1478. word_boundary: true
  1479. ellipsis: true
  1480. more_link: false
  1481. more_link_text: ''
  1482. more_link_path: ''
  1483. strip_tags: false
  1484. trim: false
  1485. preserve_tags: ''
  1486. html: false
  1487. element_type: ''
  1488. element_class: ''
  1489. element_label_type: ''
  1490. element_label_class: ''
  1491. element_label_colon: true
  1492. element_wrapper_type: ''
  1493. element_wrapper_class: ''
  1494. element_default_classes: true
  1495. empty: ''
  1496. hide_empty: false
  1497. empty_zero: false
  1498. hide_alter_empty: true
  1499. click_sort_column: value
  1500. type: list_default
  1501. settings: { }
  1502. group_column: value
  1503. group_columns: { }
  1504. group_rows: true
  1505. delta_limit: 0
  1506. delta_offset: 0
  1507. delta_reversed: false
  1508. delta_first_last: false
  1509. multi_type: separator
  1510. separator: ', '
  1511. field_api_classes: false
  1512. plugin_id: field
  1513. operations:
  1514. id: operations
  1515. table: node
  1516. field: operations
  1517. relationship: none
  1518. group_type: group
  1519. admin_label: ''
  1520. label: Operations
  1521. exclude: false
  1522. alter:
  1523. alter_text: false
  1524. text: ''
  1525. make_link: false
  1526. path: ''
  1527. absolute: false
  1528. external: false
  1529. replace_spaces: false
  1530. path_case: none
  1531. trim_whitespace: false
  1532. alt: ''
  1533. rel: ''
  1534. link_class: ''
  1535. prefix: ''
  1536. suffix: ''
  1537. target: ''
  1538. nl2br: false
  1539. max_length: 0
  1540. word_boundary: true
  1541. ellipsis: true
  1542. more_link: false
  1543. more_link_text: ''
  1544. more_link_path: ''
  1545. strip_tags: false
  1546. trim: false
  1547. preserve_tags: ''
  1548. html: false
  1549. element_type: ''
  1550. element_class: ''
  1551. element_label_type: ''
  1552. element_label_class: ''
  1553. element_label_colon: true
  1554. element_wrapper_type: ''
  1555. element_wrapper_class: ''
  1556. element_default_classes: true
  1557. empty: ''
  1558. hide_empty: false
  1559. empty_zero: false
  1560. hide_alter_empty: true
  1561. destination: true
  1562. plugin_id: entity_operations
  1563. field_son:
  1564. id: field_son
  1565. table: node__field_son
  1566. field: field_son
  1567. relationship: none
  1568. group_type: group
  1569. admin_label: ''
  1570. label: Son
  1571. exclude: false
  1572. alter:
  1573. alter_text: false
  1574. text: ''
  1575. make_link: false
  1576. path: ''
  1577. absolute: false
  1578. external: false
  1579. replace_spaces: false
  1580. path_case: none
  1581. trim_whitespace: false
  1582. alt: ''
  1583. rel: ''
  1584. link_class: ''
  1585. prefix: ''
  1586. suffix: ''
  1587. target: ''
  1588. nl2br: false
  1589. max_length: 0
  1590. word_boundary: true
  1591. ellipsis: true
  1592. more_link: false
  1593. more_link_text: ''
  1594. more_link_path: ''
  1595. strip_tags: false
  1596. trim: false
  1597. preserve_tags: ''
  1598. html: false
  1599. element_type: ''
  1600. element_class: ''
  1601. element_label_type: ''
  1602. element_label_class: ''
  1603. element_label_colon: true
  1604. element_wrapper_type: ''
  1605. element_wrapper_class: ''
  1606. element_default_classes: true
  1607. empty: ''
  1608. hide_empty: false
  1609. empty_zero: false
  1610. hide_alter_empty: true
  1611. click_sort_column: target_id
  1612. type: audiofield_audioplayer
  1613. settings:
  1614. audio_player: default_mp3_player
  1615. audio_player_jplayer_theme: none
  1616. audio_player_wavesurfer_combine_files: 0
  1617. audio_player_wordpress_combine_files: 0
  1618. audio_player_wordpress_animation: 0
  1619. audio_player_soundmanager_theme: default
  1620. audio_player_initial_volume: '8'
  1621. audio_player_autoplay: 0
  1622. download_link: 0
  1623. group_column: ''
  1624. group_columns: { }
  1625. group_rows: true
  1626. delta_limit: 0
  1627. delta_offset: 0
  1628. delta_reversed: false
  1629. delta_first_last: false
  1630. multi_type: separator
  1631. separator: ', '
  1632. field_api_classes: false
  1633. plugin_id: field
  1634. term_node_tid:
  1635. id: term_node_tid
  1636. table: node_field_data
  1637. field: term_node_tid
  1638. relationship: none
  1639. group_type: group
  1640. admin_label: ''
  1641. label: Entrées
  1642. exclude: false
  1643. alter:
  1644. alter_text: false
  1645. text: ''
  1646. make_link: false
  1647. path: ''
  1648. absolute: false
  1649. external: false
  1650. replace_spaces: false
  1651. path_case: none
  1652. trim_whitespace: false
  1653. alt: ''
  1654. rel: ''
  1655. link_class: ''
  1656. prefix: ''
  1657. suffix: ''
  1658. target: ''
  1659. nl2br: false
  1660. max_length: 0
  1661. word_boundary: true
  1662. ellipsis: true
  1663. more_link: false
  1664. more_link_text: ''
  1665. more_link_path: ''
  1666. strip_tags: false
  1667. trim: false
  1668. preserve_tags: ''
  1669. html: false
  1670. element_type: ''
  1671. element_class: ''
  1672. element_label_type: ''
  1673. element_label_class: ''
  1674. element_label_colon: true
  1675. element_wrapper_type: ''
  1676. element_wrapper_class: ''
  1677. element_default_classes: true
  1678. empty: ''
  1679. hide_empty: false
  1680. empty_zero: false
  1681. hide_alter_empty: true
  1682. type: ul
  1683. separator: ', '
  1684. link_to_taxonomy: false
  1685. limit: true
  1686. vids:
  1687. entrees: entrees
  1688. collectionneurs: '0'
  1689. genres: '0'
  1690. langues: '0'
  1691. locuteurs: '0'
  1692. page_type: '0'
  1693. entity_type: node
  1694. plugin_id: taxonomy_index_tid
  1695. name:
  1696. id: name
  1697. table: users_field_data
  1698. field: name
  1699. relationship: uid
  1700. label: Author
  1701. exclude: false
  1702. alter:
  1703. alter_text: false
  1704. element_class: ''
  1705. element_default_classes: true
  1706. empty: ''
  1707. hide_empty: false
  1708. empty_zero: false
  1709. hide_alter_empty: true
  1710. plugin_id: field
  1711. type: user_name
  1712. entity_type: user
  1713. entity_field: name
  1714. changed:
  1715. id: changed
  1716. table: node_field_data
  1717. field: changed
  1718. label: Updated
  1719. exclude: false
  1720. alter:
  1721. alter_text: false
  1722. element_class: ''
  1723. element_default_classes: true
  1724. empty: ''
  1725. hide_empty: false
  1726. empty_zero: false
  1727. hide_alter_empty: true
  1728. type: timestamp
  1729. settings:
  1730. date_format: short
  1731. custom_date_format: ''
  1732. timezone: ''
  1733. plugin_id: field
  1734. entity_type: node
  1735. entity_field: changed
  1736. status:
  1737. id: status
  1738. table: node_field_data
  1739. field: status
  1740. relationship: none
  1741. group_type: group
  1742. admin_label: ''
  1743. label: Status
  1744. exclude: true
  1745. alter:
  1746. alter_text: false
  1747. text: ''
  1748. make_link: false
  1749. path: ''
  1750. absolute: false
  1751. external: false
  1752. replace_spaces: false
  1753. path_case: none
  1754. trim_whitespace: false
  1755. alt: ''
  1756. rel: ''
  1757. link_class: ''
  1758. prefix: ''
  1759. suffix: ''
  1760. target: ''
  1761. nl2br: false
  1762. max_length: 0
  1763. word_boundary: true
  1764. ellipsis: true
  1765. more_link: false
  1766. more_link_text: ''
  1767. more_link_path: ''
  1768. strip_tags: false
  1769. trim: false
  1770. preserve_tags: ''
  1771. html: false
  1772. element_type: ''
  1773. element_class: ''
  1774. element_label_type: ''
  1775. element_label_class: ''
  1776. element_label_colon: true
  1777. element_wrapper_type: ''
  1778. element_wrapper_class: ''
  1779. element_default_classes: true
  1780. empty: ''
  1781. hide_empty: false
  1782. empty_zero: false
  1783. hide_alter_empty: true
  1784. click_sort_column: value
  1785. type: boolean
  1786. settings:
  1787. format: custom
  1788. format_custom_true: Published
  1789. format_custom_false: Unpublished
  1790. group_column: value
  1791. group_columns: { }
  1792. group_rows: true
  1793. delta_limit: 0
  1794. delta_offset: 0
  1795. delta_reversed: false
  1796. delta_first_last: false
  1797. multi_type: separator
  1798. separator: ', '
  1799. field_api_classes: false
  1800. plugin_id: field
  1801. entity_type: node
  1802. entity_field: status
  1803. field_afficher_en_page_d_acceuil:
  1804. id: field_afficher_en_page_d_acceuil
  1805. table: node__field_afficher_en_page_d_acceuil
  1806. field: field_afficher_en_page_d_acceuil
  1807. relationship: none
  1808. group_type: group
  1809. admin_label: ''
  1810. label: 'Afficher en page d''acceuil'
  1811. exclude: false
  1812. alter:
  1813. alter_text: false
  1814. text: ''
  1815. make_link: false
  1816. path: ''
  1817. absolute: false
  1818. external: false
  1819. replace_spaces: false
  1820. path_case: none
  1821. trim_whitespace: false
  1822. alt: ''
  1823. rel: ''
  1824. link_class: ''
  1825. prefix: ''
  1826. suffix: ''
  1827. target: ''
  1828. nl2br: false
  1829. max_length: 0
  1830. word_boundary: true
  1831. ellipsis: true
  1832. more_link: false
  1833. more_link_text: ''
  1834. more_link_path: ''
  1835. strip_tags: false
  1836. trim: false
  1837. preserve_tags: ''
  1838. html: false
  1839. element_type: ''
  1840. element_class: ''
  1841. element_label_type: ''
  1842. element_label_class: ''
  1843. element_label_colon: true
  1844. element_wrapper_type: ''
  1845. element_wrapper_class: ''
  1846. element_default_classes: true
  1847. empty: ''
  1848. hide_empty: false
  1849. empty_zero: false
  1850. hide_alter_empty: true
  1851. click_sort_column: value
  1852. type: boolean
  1853. settings:
  1854. format: yes-no
  1855. format_custom_true: ''
  1856. format_custom_false: ''
  1857. group_column: value
  1858. group_columns: { }
  1859. group_rows: true
  1860. delta_limit: 0
  1861. delta_offset: 0
  1862. delta_reversed: false
  1863. delta_first_last: false
  1864. multi_type: separator
  1865. separator: ', '
  1866. field_api_classes: false
  1867. plugin_id: field
  1868. title: Production
  1869. display_plugin: page
  1870. display_title: Production
  1871. id: page_1
  1872. position: 2
  1873. cache_metadata:
  1874. contexts:
  1875. - 'languages:language_content'
  1876. - 'languages:language_interface'
  1877. - url
  1878. - url.query_args
  1879. - user
  1880. - 'user.node_grants:view'
  1881. - user.roles
  1882. max-age: -1
  1883. tags:
  1884. - 'config:field.storage.node.field_afficher_en_page_d_acceuil'
  1885. - 'config:field.storage.node.field_page_type'
  1886. - 'config:field.storage.node.field_son'
  1887. - 'config:field.storage.node.field_view_mode'
  1888. - 'config:field.storage.node.field_visuel'
  1889. - 'config:field.storage.node.field_workflow_generic'
  1890. page_2:
  1891. display_options:
  1892. path: admin/content/collection
  1893. menu:
  1894. type: tab
  1895. title: Collection
  1896. description: ''
  1897. expanded: false
  1898. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  1899. weight: -99
  1900. context: '0'
  1901. menu_name: admin
  1902. tab_options:
  1903. type: tab
  1904. title: Corpus
  1905. description: 'Find and manage content'
  1906. weight: -10
  1907. display_extenders: { }
  1908. display_description: ''
  1909. filters:
  1910. field_workflow_value:
  1911. id: field_workflow_value
  1912. table: node__field_workflow
  1913. field: field_workflow_value
  1914. relationship: none
  1915. group_type: group
  1916. admin_label: ''
  1917. operator: or
  1918. value: { }
  1919. group: 1
  1920. exposed: true
  1921. expose:
  1922. operator_id: field_workflow_value_op
  1923. label: Workflow
  1924. description: ''
  1925. use_operator: false
  1926. operator: field_workflow_value_op
  1927. identifier: field_workflow_value
  1928. required: false
  1929. remember: false
  1930. multiple: false
  1931. remember_roles:
  1932. authenticated: authenticated
  1933. anonymous: '0'
  1934. collectionneur: '0'
  1935. admin: '0'
  1936. root: '0'
  1937. invite: '0'
  1938. reduce: false
  1939. is_grouped: false
  1940. group_info:
  1941. label: ''
  1942. description: ''
  1943. identifier: ''
  1944. optional: true
  1945. widget: select
  1946. multiple: false
  1947. remember: false
  1948. default_group: All
  1949. default_group_multiple: { }
  1950. group_items: { }
  1951. reduce_duplicates: false
  1952. plugin_id: workflow_state
  1953. type:
  1954. id: type
  1955. table: node_field_data
  1956. field: type
  1957. relationship: none
  1958. group_type: group
  1959. admin_label: ''
  1960. operator: in
  1961. value:
  1962. enregistrement: enregistrement
  1963. group: 1
  1964. exposed: false
  1965. expose:
  1966. operator_id: type_op
  1967. label: 'Content type'
  1968. description: ''
  1969. use_operator: false
  1970. operator: type_op
  1971. identifier: type
  1972. required: false
  1973. remember: false
  1974. multiple: false
  1975. remember_roles:
  1976. authenticated: authenticated
  1977. anonymous: '0'
  1978. administrator: '0'
  1979. reduce: false
  1980. is_grouped: false
  1981. group_info:
  1982. label: ''
  1983. description: ''
  1984. identifier: ''
  1985. optional: true
  1986. widget: select
  1987. multiple: false
  1988. remember: false
  1989. default_group: All
  1990. default_group_multiple: { }
  1991. group_items: { }
  1992. plugin_id: bundle
  1993. entity_type: node
  1994. entity_field: type
  1995. title:
  1996. id: title
  1997. table: node_field_data
  1998. field: title
  1999. relationship: none
  2000. group_type: group
  2001. admin_label: ''
  2002. operator: contains
  2003. value: ''
  2004. group: 1
  2005. exposed: true
  2006. expose:
  2007. operator_id: title_op
  2008. label: Title
  2009. description: ''
  2010. use_operator: false
  2011. operator: title_op
  2012. identifier: title
  2013. required: false
  2014. remember: false
  2015. multiple: false
  2016. remember_roles:
  2017. authenticated: authenticated
  2018. anonymous: '0'
  2019. administrator: '0'
  2020. placeholder: ''
  2021. is_grouped: false
  2022. group_info:
  2023. label: ''
  2024. description: ''
  2025. identifier: ''
  2026. optional: true
  2027. widget: select
  2028. multiple: false
  2029. remember: false
  2030. default_group: All
  2031. default_group_multiple: { }
  2032. group_items: { }
  2033. plugin_id: string
  2034. entity_type: node
  2035. entity_field: title
  2036. body_value:
  2037. id: body_value
  2038. table: node__body
  2039. field: body_value
  2040. relationship: none
  2041. group_type: group
  2042. admin_label: ''
  2043. operator: 'not empty'
  2044. value: ''
  2045. group: 1
  2046. exposed: true
  2047. expose:
  2048. operator_id: body_value_op
  2049. label: Article
  2050. description: ''
  2051. use_operator: true
  2052. operator: body_value_op
  2053. identifier: body_value
  2054. required: false
  2055. remember: false
  2056. multiple: false
  2057. remember_roles:
  2058. authenticated: authenticated
  2059. anonymous: '0'
  2060. collectionneur: '0'
  2061. admin: '0'
  2062. root: '0'
  2063. invite: '0'
  2064. placeholder: ''
  2065. is_grouped: true
  2066. group_info:
  2067. label: Article
  2068. description: ''
  2069. identifier: body_value
  2070. optional: true
  2071. widget: radios
  2072. multiple: false
  2073. remember: false
  2074. default_group: All
  2075. default_group_multiple: { }
  2076. group_items:
  2077. 1:
  2078. title: renseigné
  2079. operator: 'not empty'
  2080. value: ''
  2081. 2:
  2082. title: vide
  2083. operator: empty
  2084. value: ''
  2085. plugin_id: string
  2086. field_entrees_target_id:
  2087. id: field_entrees_target_id
  2088. table: node__field_entrees
  2089. field: field_entrees_target_id
  2090. relationship: none
  2091. group_type: group
  2092. admin_label: ''
  2093. operator: or
  2094. value: { }
  2095. group: 1
  2096. exposed: true
  2097. expose:
  2098. operator_id: field_entrees_target_id_op
  2099. label: Entrée(s)
  2100. description: ''
  2101. use_operator: false
  2102. operator: field_entrees_target_id_op
  2103. identifier: field_entrees_target_id
  2104. required: false
  2105. remember: false
  2106. multiple: false
  2107. remember_roles:
  2108. authenticated: authenticated
  2109. anonymous: '0'
  2110. collectionneur: '0'
  2111. admin: '0'
  2112. root: '0'
  2113. invite: '0'
  2114. reduce: false
  2115. is_grouped: false
  2116. group_info:
  2117. label: ''
  2118. description: ''
  2119. identifier: ''
  2120. optional: true
  2121. widget: select
  2122. multiple: false
  2123. remember: false
  2124. default_group: All
  2125. default_group_multiple: { }
  2126. group_items: { }
  2127. reduce_duplicates: false
  2128. type: select
  2129. limit: true
  2130. vid: entrees
  2131. hierarchy: true
  2132. error_message: true
  2133. plugin_id: taxonomy_index_tid
  2134. langcode:
  2135. id: langcode
  2136. table: node_field_data
  2137. field: langcode
  2138. relationship: none
  2139. group_type: group
  2140. admin_label: ''
  2141. operator: in
  2142. value:
  2143. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  2144. und: und
  2145. group: 1
  2146. exposed: false
  2147. expose:
  2148. operator_id: ''
  2149. label: ''
  2150. description: ''
  2151. use_operator: false
  2152. operator: ''
  2153. identifier: ''
  2154. required: false
  2155. remember: false
  2156. multiple: false
  2157. remember_roles:
  2158. authenticated: authenticated
  2159. reduce: false
  2160. is_grouped: false
  2161. group_info:
  2162. label: ''
  2163. description: ''
  2164. identifier: ''
  2165. optional: true
  2166. widget: select
  2167. multiple: false
  2168. remember: false
  2169. default_group: All
  2170. default_group_multiple: { }
  2171. group_items: { }
  2172. entity_type: node
  2173. entity_field: langcode
  2174. plugin_id: language
  2175. defaults:
  2176. filters: false
  2177. filter_groups: false
  2178. title: false
  2179. fields: false
  2180. filter_groups:
  2181. operator: AND
  2182. groups:
  2183. 1: AND
  2184. title: Collection
  2185. fields:
  2186. status:
  2187. id: status
  2188. table: node_field_data
  2189. field: status
  2190. relationship: none
  2191. group_type: group
  2192. admin_label: ''
  2193. label: Status
  2194. exclude: true
  2195. alter:
  2196. alter_text: false
  2197. text: ''
  2198. make_link: false
  2199. path: ''
  2200. absolute: false
  2201. external: false
  2202. replace_spaces: false
  2203. path_case: none
  2204. trim_whitespace: false
  2205. alt: ''
  2206. rel: ''
  2207. link_class: ''
  2208. prefix: ''
  2209. suffix: ''
  2210. target: ''
  2211. nl2br: false
  2212. max_length: 0
  2213. word_boundary: true
  2214. ellipsis: true
  2215. more_link: false
  2216. more_link_text: ''
  2217. more_link_path: ''
  2218. strip_tags: false
  2219. trim: false
  2220. preserve_tags: ''
  2221. html: false
  2222. element_type: ''
  2223. element_class: ''
  2224. element_label_type: ''
  2225. element_label_class: ''
  2226. element_label_colon: true
  2227. element_wrapper_type: ''
  2228. element_wrapper_class: ''
  2229. element_default_classes: true
  2230. empty: ''
  2231. hide_empty: false
  2232. empty_zero: false
  2233. hide_alter_empty: true
  2234. click_sort_column: value
  2235. type: boolean
  2236. settings:
  2237. format: custom
  2238. format_custom_true: Published
  2239. format_custom_false: Unpublished
  2240. group_column: value
  2241. group_columns: { }
  2242. group_rows: true
  2243. delta_limit: 0
  2244. delta_offset: 0
  2245. delta_reversed: false
  2246. delta_first_last: false
  2247. multi_type: separator
  2248. separator: ', '
  2249. field_api_classes: false
  2250. plugin_id: field
  2251. entity_type: node
  2252. entity_field: status
  2253. title:
  2254. id: title
  2255. table: node_field_data
  2256. field: title
  2257. relationship: none
  2258. group_type: group
  2259. admin_label: ''
  2260. label: Title
  2261. exclude: false
  2262. alter:
  2263. alter_text: false
  2264. text: '<h3>{{ title }}</h3>'
  2265. make_link: false
  2266. path: ''
  2267. absolute: false
  2268. external: false
  2269. replace_spaces: false
  2270. path_case: none
  2271. trim_whitespace: false
  2272. alt: ''
  2273. rel: ''
  2274. link_class: ''
  2275. prefix: ''
  2276. suffix: ''
  2277. target: ''
  2278. nl2br: false
  2279. max_length: 0
  2280. word_boundary: true
  2281. ellipsis: true
  2282. more_link: false
  2283. more_link_text: ''
  2284. more_link_path: ''
  2285. strip_tags: false
  2286. trim: false
  2287. preserve_tags: ''
  2288. html: false
  2289. element_type: ''
  2290. element_class: ''
  2291. element_label_type: ''
  2292. element_label_class: ''
  2293. element_label_colon: true
  2294. element_wrapper_type: ''
  2295. element_wrapper_class: ''
  2296. element_default_classes: true
  2297. empty: ''
  2298. hide_empty: false
  2299. empty_zero: false
  2300. hide_alter_empty: true
  2301. click_sort_column: value
  2302. type: string
  2303. settings:
  2304. link_to_entity: true
  2305. group_column: value
  2306. group_columns: { }
  2307. group_rows: true
  2308. delta_limit: 0
  2309. delta_offset: 0
  2310. delta_reversed: false
  2311. delta_first_last: false
  2312. multi_type: separator
  2313. separator: ', '
  2314. field_api_classes: false
  2315. entity_type: node
  2316. entity_field: title
  2317. plugin_id: field
  2318. field_workflow:
  2319. id: field_workflow
  2320. table: node__field_workflow
  2321. field: field_workflow
  2322. relationship: none
  2323. group_type: group
  2324. admin_label: ''
  2325. label: Workflow
  2326. exclude: false
  2327. alter:
  2328. alter_text: false
  2329. text: ''
  2330. make_link: false
  2331. path: ''
  2332. absolute: false
  2333. external: false
  2334. replace_spaces: false
  2335. path_case: none
  2336. trim_whitespace: false
  2337. alt: ''
  2338. rel: ''
  2339. link_class: ''
  2340. prefix: ''
  2341. suffix: ''
  2342. target: ''
  2343. nl2br: false
  2344. max_length: 0
  2345. word_boundary: true
  2346. ellipsis: true
  2347. more_link: false
  2348. more_link_text: ''
  2349. more_link_path: ''
  2350. strip_tags: false
  2351. trim: false
  2352. preserve_tags: ''
  2353. html: false
  2354. element_type: ''
  2355. element_class: ''
  2356. element_label_type: ''
  2357. element_label_class: ''
  2358. element_label_colon: true
  2359. element_wrapper_type: ''
  2360. element_wrapper_class: ''
  2361. element_default_classes: true
  2362. empty: ''
  2363. hide_empty: false
  2364. empty_zero: false
  2365. hide_alter_empty: true
  2366. click_sort_column: value
  2367. type: list_default
  2368. settings: { }
  2369. group_column: value
  2370. group_columns: { }
  2371. group_rows: true
  2372. delta_limit: 0
  2373. delta_offset: 0
  2374. delta_reversed: false
  2375. delta_first_last: false
  2376. multi_type: separator
  2377. separator: ', '
  2378. field_api_classes: false
  2379. plugin_id: field
  2380. operations:
  2381. id: operations
  2382. table: node
  2383. field: operations
  2384. relationship: none
  2385. group_type: group
  2386. admin_label: ''
  2387. label: Operations
  2388. exclude: false
  2389. alter:
  2390. alter_text: false
  2391. text: ''
  2392. make_link: false
  2393. path: ''
  2394. absolute: false
  2395. external: false
  2396. replace_spaces: false
  2397. path_case: none
  2398. trim_whitespace: false
  2399. alt: ''
  2400. rel: ''
  2401. link_class: ''
  2402. prefix: ''
  2403. suffix: ''
  2404. target: ''
  2405. nl2br: false
  2406. max_length: 0
  2407. word_boundary: true
  2408. ellipsis: true
  2409. more_link: false
  2410. more_link_text: ''
  2411. more_link_path: ''
  2412. strip_tags: false
  2413. trim: false
  2414. preserve_tags: ''
  2415. html: false
  2416. element_type: ''
  2417. element_class: ''
  2418. element_label_type: ''
  2419. element_label_class: ''
  2420. element_label_colon: true
  2421. element_wrapper_type: ''
  2422. element_wrapper_class: ''
  2423. element_default_classes: true
  2424. empty: ''
  2425. hide_empty: false
  2426. empty_zero: false
  2427. hide_alter_empty: true
  2428. destination: true
  2429. plugin_id: entity_operations
  2430. field_son:
  2431. id: field_son
  2432. table: node__field_son
  2433. field: field_son
  2434. relationship: none
  2435. group_type: group
  2436. admin_label: ''
  2437. label: Son
  2438. exclude: false
  2439. alter:
  2440. alter_text: false
  2441. text: ''
  2442. make_link: false
  2443. path: ''
  2444. absolute: false
  2445. external: false
  2446. replace_spaces: false
  2447. path_case: none
  2448. trim_whitespace: false
  2449. alt: ''
  2450. rel: ''
  2451. link_class: ''
  2452. prefix: ''
  2453. suffix: ''
  2454. target: ''
  2455. nl2br: false
  2456. max_length: 0
  2457. word_boundary: true
  2458. ellipsis: true
  2459. more_link: false
  2460. more_link_text: ''
  2461. more_link_path: ''
  2462. strip_tags: false
  2463. trim: false
  2464. preserve_tags: ''
  2465. html: false
  2466. element_type: ''
  2467. element_class: ''
  2468. element_label_type: ''
  2469. element_label_class: ''
  2470. element_label_colon: true
  2471. element_wrapper_type: ''
  2472. element_wrapper_class: ''
  2473. element_default_classes: true
  2474. empty: ''
  2475. hide_empty: false
  2476. empty_zero: false
  2477. hide_alter_empty: true
  2478. click_sort_column: target_id
  2479. type: audiofield_audioplayer
  2480. settings:
  2481. audio_player: default_mp3_player
  2482. audio_player_jplayer_theme: none
  2483. audio_player_wavesurfer_combine_files: 0
  2484. audio_player_wordpress_combine_files: 0
  2485. audio_player_wordpress_animation: 0
  2486. audio_player_soundmanager_theme: default
  2487. audio_player_initial_volume: '8'
  2488. audio_player_autoplay: 0
  2489. audio_player_lazyload: 1
  2490. download_button: 0
  2491. download_link: 0
  2492. group_column: ''
  2493. group_columns: { }
  2494. group_rows: true
  2495. delta_limit: 0
  2496. delta_offset: 0
  2497. delta_reversed: false
  2498. delta_first_last: false
  2499. multi_type: separator
  2500. separator: ', '
  2501. field_api_classes: false
  2502. plugin_id: field
  2503. field_nbr_locuteurs:
  2504. id: field_nbr_locuteurs
  2505. table: node__field_nbr_locuteurs
  2506. field: field_nbr_locuteurs
  2507. relationship: none
  2508. group_type: group
  2509. admin_label: ''
  2510. label: Locuteur(s)
  2511. exclude: false
  2512. alter:
  2513. alter_text: false
  2514. text: ''
  2515. make_link: false
  2516. path: ''
  2517. absolute: false
  2518. external: false
  2519. replace_spaces: false
  2520. path_case: none
  2521. trim_whitespace: false
  2522. alt: ''
  2523. rel: ''
  2524. link_class: ''
  2525. prefix: ''
  2526. suffix: ''
  2527. target: ''
  2528. nl2br: false
  2529. max_length: 0
  2530. word_boundary: true
  2531. ellipsis: true
  2532. more_link: false
  2533. more_link_text: ''
  2534. more_link_path: ''
  2535. strip_tags: false
  2536. trim: false
  2537. preserve_tags: ''
  2538. html: false
  2539. element_type: ''
  2540. element_class: ''
  2541. element_label_type: ''
  2542. element_label_class: ''
  2543. element_label_colon: true
  2544. element_wrapper_type: ''
  2545. element_wrapper_class: ''
  2546. element_default_classes: true
  2547. empty: ''
  2548. hide_empty: false
  2549. empty_zero: false
  2550. hide_alter_empty: true
  2551. click_sort_column: value
  2552. type: number_integer
  2553. settings:
  2554. thousand_separator: ''
  2555. prefix_suffix: true
  2556. group_column: value
  2557. group_columns: { }
  2558. group_rows: true
  2559. delta_limit: 0
  2560. delta_offset: 0
  2561. delta_reversed: false
  2562. delta_first_last: false
  2563. multi_type: separator
  2564. separator: ', '
  2565. field_api_classes: false
  2566. plugin_id: field
  2567. field_description:
  2568. id: field_description
  2569. table: node__field_description
  2570. field: field_description
  2571. relationship: none
  2572. group_type: group
  2573. admin_label: ''
  2574. label: Description
  2575. exclude: false
  2576. alter:
  2577. alter_text: false
  2578. text: ''
  2579. make_link: false
  2580. path: ''
  2581. absolute: false
  2582. external: false
  2583. replace_spaces: false
  2584. path_case: none
  2585. trim_whitespace: false
  2586. alt: ''
  2587. rel: ''
  2588. link_class: ''
  2589. prefix: ''
  2590. suffix: ''
  2591. target: ''
  2592. nl2br: false
  2593. max_length: 0
  2594. word_boundary: true
  2595. ellipsis: true
  2596. more_link: false
  2597. more_link_text: ''
  2598. more_link_path: ''
  2599. strip_tags: false
  2600. trim: false
  2601. preserve_tags: ''
  2602. html: false
  2603. element_type: ''
  2604. element_class: ''
  2605. element_label_type: ''
  2606. element_label_class: ''
  2607. element_label_colon: true
  2608. element_wrapper_type: ''
  2609. element_wrapper_class: ''
  2610. element_default_classes: true
  2611. empty: ''
  2612. hide_empty: false
  2613. empty_zero: false
  2614. hide_alter_empty: true
  2615. click_sort_column: value
  2616. type: text_default
  2617. settings: { }
  2618. group_column: value
  2619. group_columns: { }
  2620. group_rows: true
  2621. delta_limit: 0
  2622. delta_offset: 0
  2623. delta_reversed: false
  2624. delta_first_last: false
  2625. multi_type: separator
  2626. separator: ', '
  2627. field_api_classes: false
  2628. plugin_id: field
  2629. body:
  2630. id: body
  2631. table: node__body
  2632. field: body
  2633. relationship: none
  2634. group_type: group
  2635. admin_label: ''
  2636. label: Article
  2637. exclude: false
  2638. alter:
  2639. alter_text: false
  2640. text: ''
  2641. make_link: false
  2642. path: ''
  2643. absolute: false
  2644. external: false
  2645. replace_spaces: false
  2646. path_case: none
  2647. trim_whitespace: false
  2648. alt: ''
  2649. rel: ''
  2650. link_class: ''
  2651. prefix: ''
  2652. suffix: ''
  2653. target: ''
  2654. nl2br: false
  2655. max_length: 0
  2656. word_boundary: true
  2657. ellipsis: true
  2658. more_link: false
  2659. more_link_text: ''
  2660. more_link_path: ''
  2661. strip_tags: false
  2662. trim: false
  2663. preserve_tags: ''
  2664. html: false
  2665. element_type: ''
  2666. element_class: ''
  2667. element_label_type: ''
  2668. element_label_class: ''
  2669. element_label_colon: true
  2670. element_wrapper_type: ''
  2671. element_wrapper_class: ''
  2672. element_default_classes: true
  2673. empty: ''
  2674. hide_empty: false
  2675. empty_zero: false
  2676. hide_alter_empty: true
  2677. click_sort_column: value
  2678. type: text_summary_or_trimmed
  2679. settings:
  2680. trim_length: 50
  2681. group_column: value
  2682. group_columns: { }
  2683. group_rows: true
  2684. delta_limit: 0
  2685. delta_offset: 0
  2686. delta_reversed: false
  2687. delta_first_last: false
  2688. multi_type: separator
  2689. separator: ', '
  2690. field_api_classes: false
  2691. plugin_id: field
  2692. field_entrees:
  2693. id: field_entrees
  2694. table: node__field_entrees
  2695. field: field_entrees
  2696. relationship: none
  2697. group_type: group
  2698. admin_label: ''
  2699. label: Entrée(s)
  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: target_id
  2741. type: entity_reference_label
  2742. settings:
  2743. link: true
  2744. group_column: target_id
  2745. group_columns: { }
  2746. group_rows: true
  2747. delta_limit: 0
  2748. delta_offset: 0
  2749. delta_reversed: false
  2750. delta_first_last: false
  2751. multi_type: separator
  2752. separator: '<br/>'
  2753. field_api_classes: false
  2754. plugin_id: field
  2755. field_genres:
  2756. id: field_genres
  2757. table: node__field_genres
  2758. field: field_genres
  2759. relationship: none
  2760. group_type: group
  2761. admin_label: ''
  2762. label: Genre(s)
  2763. exclude: false
  2764. alter:
  2765. alter_text: false
  2766. text: ''
  2767. make_link: false
  2768. path: ''
  2769. absolute: false
  2770. external: false
  2771. replace_spaces: false
  2772. path_case: none
  2773. trim_whitespace: false
  2774. alt: ''
  2775. rel: ''
  2776. link_class: ''
  2777. prefix: ''
  2778. suffix: ''
  2779. target: ''
  2780. nl2br: false
  2781. max_length: 0
  2782. word_boundary: true
  2783. ellipsis: true
  2784. more_link: false
  2785. more_link_text: ''
  2786. more_link_path: ''
  2787. strip_tags: false
  2788. trim: false
  2789. preserve_tags: ''
  2790. html: false
  2791. element_type: ''
  2792. element_class: ''
  2793. element_label_type: ''
  2794. element_label_class: ''
  2795. element_label_colon: true
  2796. element_wrapper_type: ''
  2797. element_wrapper_class: ''
  2798. element_default_classes: true
  2799. empty: ''
  2800. hide_empty: false
  2801. empty_zero: false
  2802. hide_alter_empty: true
  2803. click_sort_column: target_id
  2804. type: entity_reference_label
  2805. settings:
  2806. link: true
  2807. group_column: target_id
  2808. group_columns: { }
  2809. group_rows: true
  2810. delta_limit: 0
  2811. delta_offset: 0
  2812. delta_reversed: false
  2813. delta_first_last: false
  2814. multi_type: separator
  2815. separator: '<br/>'
  2816. field_api_classes: false
  2817. plugin_id: field
  2818. field_langues:
  2819. id: field_langues
  2820. table: node__field_langues
  2821. field: field_langues
  2822. relationship: none
  2823. group_type: group
  2824. admin_label: ''
  2825. label: Langue(s)
  2826. exclude: false
  2827. alter:
  2828. alter_text: false
  2829. text: ''
  2830. make_link: false
  2831. path: ''
  2832. absolute: false
  2833. external: false
  2834. replace_spaces: false
  2835. path_case: none
  2836. trim_whitespace: false
  2837. alt: ''
  2838. rel: ''
  2839. link_class: ''
  2840. prefix: ''
  2841. suffix: ''
  2842. target: ''
  2843. nl2br: false
  2844. max_length: 0
  2845. word_boundary: true
  2846. ellipsis: true
  2847. more_link: false
  2848. more_link_text: ''
  2849. more_link_path: ''
  2850. strip_tags: false
  2851. trim: false
  2852. preserve_tags: ''
  2853. html: false
  2854. element_type: ''
  2855. element_class: ''
  2856. element_label_type: ''
  2857. element_label_class: ''
  2858. element_label_colon: true
  2859. element_wrapper_type: ''
  2860. element_wrapper_class: ''
  2861. element_default_classes: true
  2862. empty: ''
  2863. hide_empty: false
  2864. empty_zero: false
  2865. hide_alter_empty: true
  2866. click_sort_column: target_id
  2867. type: entity_reference_label
  2868. settings:
  2869. link: true
  2870. group_column: target_id
  2871. group_columns: { }
  2872. group_rows: true
  2873. delta_limit: 0
  2874. delta_offset: 0
  2875. delta_reversed: false
  2876. delta_first_last: false
  2877. multi_type: separator
  2878. separator: '<br/>'
  2879. field_api_classes: false
  2880. plugin_id: field
  2881. name:
  2882. id: name
  2883. table: users_field_data
  2884. field: name
  2885. relationship: uid
  2886. label: Author
  2887. exclude: false
  2888. alter:
  2889. alter_text: false
  2890. element_class: ''
  2891. element_default_classes: true
  2892. empty: ''
  2893. hide_empty: false
  2894. empty_zero: false
  2895. hide_alter_empty: true
  2896. plugin_id: field
  2897. type: user_name
  2898. entity_type: user
  2899. entity_field: name
  2900. changed:
  2901. id: changed
  2902. table: node_field_data
  2903. field: changed
  2904. label: Updated
  2905. exclude: false
  2906. alter:
  2907. alter_text: false
  2908. element_class: ''
  2909. element_default_classes: true
  2910. empty: ''
  2911. hide_empty: false
  2912. empty_zero: false
  2913. hide_alter_empty: true
  2914. type: timestamp
  2915. settings:
  2916. date_format: short
  2917. custom_date_format: ''
  2918. timezone: ''
  2919. plugin_id: field
  2920. entity_type: node
  2921. entity_field: changed
  2922. field_collectionneurs:
  2923. id: field_collectionneurs
  2924. table: node__field_collectionneurs
  2925. field: field_collectionneurs
  2926. relationship: none
  2927. group_type: group
  2928. admin_label: ''
  2929. label: Collectionneur(s)
  2930. exclude: true
  2931. alter:
  2932. alter_text: false
  2933. text: ''
  2934. make_link: false
  2935. path: ''
  2936. absolute: false
  2937. external: false
  2938. replace_spaces: false
  2939. path_case: none
  2940. trim_whitespace: false
  2941. alt: ''
  2942. rel: ''
  2943. link_class: ''
  2944. prefix: ''
  2945. suffix: ''
  2946. target: ''
  2947. nl2br: false
  2948. max_length: 0
  2949. word_boundary: true
  2950. ellipsis: true
  2951. more_link: false
  2952. more_link_text: ''
  2953. more_link_path: ''
  2954. strip_tags: false
  2955. trim: false
  2956. preserve_tags: ''
  2957. html: false
  2958. element_type: ''
  2959. element_class: ''
  2960. element_label_type: ''
  2961. element_label_class: ''
  2962. element_label_colon: true
  2963. element_wrapper_type: ''
  2964. element_wrapper_class: ''
  2965. element_default_classes: true
  2966. empty: ''
  2967. hide_empty: false
  2968. empty_zero: false
  2969. hide_alter_empty: true
  2970. click_sort_column: target_id
  2971. type: entity_reference_label
  2972. settings:
  2973. link: true
  2974. group_column: target_id
  2975. group_columns: { }
  2976. group_rows: true
  2977. delta_limit: 0
  2978. delta_offset: 0
  2979. delta_reversed: false
  2980. delta_first_last: false
  2981. multi_type: separator
  2982. separator: '<br/>'
  2983. field_api_classes: false
  2984. plugin_id: field
  2985. field_locuteurs:
  2986. id: field_locuteurs
  2987. table: node__field_locuteurs
  2988. field: field_locuteurs
  2989. relationship: none
  2990. group_type: group
  2991. admin_label: ''
  2992. label: Locuteur(s)
  2993. exclude: true
  2994. alter:
  2995. alter_text: false
  2996. text: ''
  2997. make_link: false
  2998. path: ''
  2999. absolute: false
  3000. external: false
  3001. replace_spaces: false
  3002. path_case: none
  3003. trim_whitespace: false
  3004. alt: ''
  3005. rel: ''
  3006. link_class: ''
  3007. prefix: ''
  3008. suffix: ''
  3009. target: ''
  3010. nl2br: false
  3011. max_length: 0
  3012. word_boundary: true
  3013. ellipsis: true
  3014. more_link: false
  3015. more_link_text: ''
  3016. more_link_path: ''
  3017. strip_tags: false
  3018. trim: false
  3019. preserve_tags: ''
  3020. html: false
  3021. element_type: ''
  3022. element_class: ''
  3023. element_label_type: ''
  3024. element_label_class: ''
  3025. element_label_colon: true
  3026. element_wrapper_type: ''
  3027. element_wrapper_class: ''
  3028. element_default_classes: true
  3029. empty: ''
  3030. hide_empty: false
  3031. empty_zero: false
  3032. hide_alter_empty: true
  3033. click_sort_column: target_id
  3034. type: entity_reference_label
  3035. settings:
  3036. link: true
  3037. group_column: target_id
  3038. group_columns: { }
  3039. group_rows: true
  3040. delta_limit: 0
  3041. delta_offset: 0
  3042. delta_reversed: false
  3043. delta_first_last: false
  3044. multi_type: separator
  3045. separator: '<br/>'
  3046. field_api_classes: false
  3047. plugin_id: field
  3048. display_plugin: page
  3049. display_title: Collection
  3050. id: page_2
  3051. position: 1
  3052. cache_metadata:
  3053. contexts:
  3054. - 'languages:language_content'
  3055. - 'languages:language_interface'
  3056. - url
  3057. - url.query_args
  3058. - user
  3059. - 'user.node_grants:view'
  3060. - user.roles
  3061. max-age: -1
  3062. tags:
  3063. - 'config:field.storage.node.body'
  3064. - 'config:field.storage.node.field_collectionneurs'
  3065. - 'config:field.storage.node.field_description'
  3066. - 'config:field.storage.node.field_entrees'
  3067. - 'config:field.storage.node.field_genres'
  3068. - 'config:field.storage.node.field_langues'
  3069. - 'config:field.storage.node.field_locuteurs'
  3070. - 'config:field.storage.node.field_nbr_locuteurs'
  3071. - 'config:field.storage.node.field_son'
  3072. - 'config:field.storage.node.field_workflow'
  3073. page_3:
  3074. display_options:
  3075. path: admin/content/agenda
  3076. menu:
  3077. type: tab
  3078. title: Agenda
  3079. description: ''
  3080. expanded: false
  3081. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  3082. weight: -97
  3083. context: '0'
  3084. menu_name: admin
  3085. tab_options:
  3086. type: normal
  3087. title: Content
  3088. description: 'Find and manage content'
  3089. menu_name: admin
  3090. weight: -10
  3091. display_extenders: { }
  3092. display_description: ''
  3093. access:
  3094. type: role
  3095. options:
  3096. role:
  3097. admin: admin
  3098. root: root
  3099. defaults:
  3100. access: false
  3101. filters: false
  3102. filter_groups: false
  3103. fields: false
  3104. filters:
  3105. status_extra:
  3106. id: status_extra
  3107. table: node_field_data
  3108. field: status_extra
  3109. operator: '='
  3110. value: false
  3111. plugin_id: node_status
  3112. group: 1
  3113. entity_type: node
  3114. field_workflow_generic_value:
  3115. id: field_workflow_generic_value
  3116. table: node__field_workflow_generic
  3117. field: field_workflow_generic_value
  3118. relationship: none
  3119. group_type: group
  3120. admin_label: ''
  3121. operator: or
  3122. value: { }
  3123. group: 1
  3124. exposed: true
  3125. expose:
  3126. operator_id: field_workflow_generic_value_op
  3127. label: Workflow
  3128. description: ''
  3129. use_operator: false
  3130. operator: field_workflow_generic_value_op
  3131. identifier: field_workflow_generic_value
  3132. required: false
  3133. remember: false
  3134. multiple: false
  3135. remember_roles:
  3136. authenticated: authenticated
  3137. anonymous: '0'
  3138. collectionneur: '0'
  3139. admin: '0'
  3140. root: '0'
  3141. invite: '0'
  3142. reduce: false
  3143. is_grouped: false
  3144. group_info:
  3145. label: ''
  3146. description: ''
  3147. identifier: ''
  3148. optional: true
  3149. widget: select
  3150. multiple: false
  3151. remember: false
  3152. default_group: All
  3153. default_group_multiple: { }
  3154. group_items: { }
  3155. reduce_duplicates: false
  3156. plugin_id: workflow_state
  3157. type:
  3158. id: type
  3159. table: node_field_data
  3160. field: type
  3161. relationship: none
  3162. group_type: group
  3163. admin_label: ''
  3164. operator: in
  3165. value:
  3166. evenement: evenement
  3167. group: 1
  3168. exposed: false
  3169. expose:
  3170. operator_id: type_op
  3171. label: 'Content type'
  3172. description: ''
  3173. use_operator: false
  3174. operator: type_op
  3175. identifier: type
  3176. required: false
  3177. remember: false
  3178. multiple: false
  3179. remember_roles:
  3180. authenticated: authenticated
  3181. anonymous: '0'
  3182. collectionneur: '0'
  3183. admin: '0'
  3184. root: '0'
  3185. invite: '0'
  3186. reduce: true
  3187. is_grouped: false
  3188. group_info:
  3189. label: ''
  3190. description: ''
  3191. identifier: ''
  3192. optional: true
  3193. widget: select
  3194. multiple: false
  3195. remember: false
  3196. default_group: All
  3197. default_group_multiple: { }
  3198. group_items: { }
  3199. plugin_id: bundle
  3200. entity_type: node
  3201. entity_field: type
  3202. title:
  3203. id: title
  3204. table: node_field_data
  3205. field: title
  3206. relationship: none
  3207. group_type: group
  3208. admin_label: ''
  3209. operator: contains
  3210. value: ''
  3211. group: 1
  3212. exposed: true
  3213. expose:
  3214. operator_id: title_op
  3215. label: Title
  3216. description: ''
  3217. use_operator: false
  3218. operator: title_op
  3219. identifier: title
  3220. required: false
  3221. remember: false
  3222. multiple: false
  3223. remember_roles:
  3224. authenticated: authenticated
  3225. anonymous: '0'
  3226. administrator: '0'
  3227. placeholder: ''
  3228. is_grouped: false
  3229. group_info:
  3230. label: ''
  3231. description: ''
  3232. identifier: ''
  3233. optional: true
  3234. widget: select
  3235. multiple: false
  3236. remember: false
  3237. default_group: All
  3238. default_group_multiple: { }
  3239. group_items: { }
  3240. plugin_id: string
  3241. entity_type: node
  3242. entity_field: title
  3243. langcode:
  3244. id: langcode
  3245. table: node_field_data
  3246. field: langcode
  3247. relationship: none
  3248. group_type: group
  3249. admin_label: ''
  3250. operator: in
  3251. value:
  3252. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  3253. und: und
  3254. zxx: zxx
  3255. group: 1
  3256. exposed: false
  3257. expose:
  3258. operator_id: ''
  3259. label: ''
  3260. description: ''
  3261. use_operator: false
  3262. operator: ''
  3263. identifier: ''
  3264. required: false
  3265. remember: false
  3266. multiple: false
  3267. remember_roles:
  3268. authenticated: authenticated
  3269. reduce: false
  3270. is_grouped: false
  3271. group_info:
  3272. label: ''
  3273. description: ''
  3274. identifier: ''
  3275. optional: true
  3276. widget: select
  3277. multiple: false
  3278. remember: false
  3279. default_group: All
  3280. default_group_multiple: { }
  3281. group_items: { }
  3282. entity_type: node
  3283. entity_field: langcode
  3284. plugin_id: language
  3285. filter_groups:
  3286. operator: AND
  3287. groups:
  3288. 1: AND
  3289. fields:
  3290. title:
  3291. id: title
  3292. table: node_field_data
  3293. field: title
  3294. label: Title
  3295. exclude: false
  3296. alter:
  3297. alter_text: false
  3298. element_class: ''
  3299. element_default_classes: true
  3300. empty: ''
  3301. hide_empty: false
  3302. empty_zero: false
  3303. hide_alter_empty: true
  3304. entity_type: node
  3305. entity_field: title
  3306. type: string
  3307. settings:
  3308. link_to_entity: true
  3309. plugin_id: field
  3310. status:
  3311. id: status
  3312. table: node_field_data
  3313. field: status
  3314. relationship: none
  3315. group_type: group
  3316. admin_label: ''
  3317. label: Status
  3318. exclude: true
  3319. alter:
  3320. alter_text: false
  3321. text: ''
  3322. make_link: false
  3323. path: ''
  3324. absolute: false
  3325. external: false
  3326. replace_spaces: false
  3327. path_case: none
  3328. trim_whitespace: false
  3329. alt: ''
  3330. rel: ''
  3331. link_class: ''
  3332. prefix: ''
  3333. suffix: ''
  3334. target: ''
  3335. nl2br: false
  3336. max_length: 0
  3337. word_boundary: true
  3338. ellipsis: true
  3339. more_link: false
  3340. more_link_text: ''
  3341. more_link_path: ''
  3342. strip_tags: false
  3343. trim: false
  3344. preserve_tags: ''
  3345. html: false
  3346. element_type: ''
  3347. element_class: ''
  3348. element_label_type: ''
  3349. element_label_class: ''
  3350. element_label_colon: true
  3351. element_wrapper_type: ''
  3352. element_wrapper_class: ''
  3353. element_default_classes: true
  3354. empty: ''
  3355. hide_empty: false
  3356. empty_zero: false
  3357. hide_alter_empty: true
  3358. click_sort_column: value
  3359. type: boolean
  3360. settings:
  3361. format: custom
  3362. format_custom_true: Published
  3363. format_custom_false: Unpublished
  3364. group_column: value
  3365. group_columns: { }
  3366. group_rows: true
  3367. delta_limit: 0
  3368. delta_offset: 0
  3369. delta_reversed: false
  3370. delta_first_last: false
  3371. multi_type: separator
  3372. separator: ', '
  3373. field_api_classes: false
  3374. plugin_id: field
  3375. entity_type: node
  3376. entity_field: status
  3377. field_workflow_generic:
  3378. id: field_workflow_generic
  3379. table: node__field_workflow_generic
  3380. field: field_workflow_generic
  3381. relationship: none
  3382. group_type: group
  3383. admin_label: ''
  3384. label: Workflow
  3385. exclude: false
  3386. alter:
  3387. alter_text: false
  3388. text: ''
  3389. make_link: false
  3390. path: ''
  3391. absolute: false
  3392. external: false
  3393. replace_spaces: false
  3394. path_case: none
  3395. trim_whitespace: false
  3396. alt: ''
  3397. rel: ''
  3398. link_class: ''
  3399. prefix: ''
  3400. suffix: ''
  3401. target: ''
  3402. nl2br: false
  3403. max_length: 0
  3404. word_boundary: true
  3405. ellipsis: true
  3406. more_link: false
  3407. more_link_text: ''
  3408. more_link_path: ''
  3409. strip_tags: false
  3410. trim: false
  3411. preserve_tags: ''
  3412. html: false
  3413. element_type: ''
  3414. element_class: ''
  3415. element_label_type: ''
  3416. element_label_class: ''
  3417. element_label_colon: true
  3418. element_wrapper_type: ''
  3419. element_wrapper_class: ''
  3420. element_default_classes: true
  3421. empty: ''
  3422. hide_empty: false
  3423. empty_zero: false
  3424. hide_alter_empty: true
  3425. click_sort_column: value
  3426. type: list_default
  3427. settings: { }
  3428. group_column: value
  3429. group_columns: { }
  3430. group_rows: true
  3431. delta_limit: 0
  3432. delta_offset: 0
  3433. delta_reversed: false
  3434. delta_first_last: false
  3435. multi_type: separator
  3436. separator: ', '
  3437. field_api_classes: false
  3438. plugin_id: field
  3439. operations:
  3440. id: operations
  3441. table: node
  3442. field: operations
  3443. relationship: none
  3444. group_type: group
  3445. admin_label: ''
  3446. label: Operations
  3447. exclude: false
  3448. alter:
  3449. alter_text: false
  3450. text: ''
  3451. make_link: false
  3452. path: ''
  3453. absolute: false
  3454. external: false
  3455. replace_spaces: false
  3456. path_case: none
  3457. trim_whitespace: false
  3458. alt: ''
  3459. rel: ''
  3460. link_class: ''
  3461. prefix: ''
  3462. suffix: ''
  3463. target: ''
  3464. nl2br: false
  3465. max_length: 0
  3466. word_boundary: true
  3467. ellipsis: true
  3468. more_link: false
  3469. more_link_text: ''
  3470. more_link_path: ''
  3471. strip_tags: false
  3472. trim: false
  3473. preserve_tags: ''
  3474. html: false
  3475. element_type: ''
  3476. element_class: ''
  3477. element_label_type: ''
  3478. element_label_class: ''
  3479. element_label_colon: true
  3480. element_wrapper_type: ''
  3481. element_wrapper_class: ''
  3482. element_default_classes: true
  3483. empty: ''
  3484. hide_empty: false
  3485. empty_zero: false
  3486. hide_alter_empty: true
  3487. destination: true
  3488. plugin_id: entity_operations
  3489. field_date:
  3490. id: field_date
  3491. table: node__field_date
  3492. field: field_date
  3493. relationship: none
  3494. group_type: group
  3495. admin_label: ''
  3496. label: Date
  3497. exclude: false
  3498. alter:
  3499. alter_text: false
  3500. text: ''
  3501. make_link: false
  3502. path: ''
  3503. absolute: false
  3504. external: false
  3505. replace_spaces: false
  3506. path_case: none
  3507. trim_whitespace: false
  3508. alt: ''
  3509. rel: ''
  3510. link_class: ''
  3511. prefix: ''
  3512. suffix: ''
  3513. target: ''
  3514. nl2br: false
  3515. max_length: 0
  3516. word_boundary: true
  3517. ellipsis: true
  3518. more_link: false
  3519. more_link_text: ''
  3520. more_link_path: ''
  3521. strip_tags: false
  3522. trim: false
  3523. preserve_tags: ''
  3524. html: false
  3525. element_type: ''
  3526. element_class: ''
  3527. element_label_type: ''
  3528. element_label_class: ''
  3529. element_label_colon: true
  3530. element_wrapper_type: ''
  3531. element_wrapper_class: ''
  3532. element_default_classes: true
  3533. empty: ''
  3534. hide_empty: false
  3535. empty_zero: false
  3536. hide_alter_empty: true
  3537. click_sort_column: value
  3538. type: daterange_default
  3539. settings:
  3540. timezone_override: ''
  3541. format_type: medium
  3542. separator: '-'
  3543. group_column: value
  3544. group_columns: { }
  3545. group_rows: true
  3546. delta_limit: 0
  3547. delta_offset: 0
  3548. delta_reversed: false
  3549. delta_first_last: false
  3550. multi_type: separator
  3551. separator: '<br/>'
  3552. field_api_classes: false
  3553. plugin_id: field
  3554. field_page_liee:
  3555. id: field_page_liee
  3556. table: node__field_page_liee
  3557. field: field_page_liee
  3558. relationship: none
  3559. group_type: group
  3560. admin_label: ''
  3561. label: 'Page(s) liée(s)'
  3562. exclude: false
  3563. alter:
  3564. alter_text: false
  3565. text: ''
  3566. make_link: false
  3567. path: ''
  3568. absolute: false
  3569. external: false
  3570. replace_spaces: false
  3571. path_case: none
  3572. trim_whitespace: false
  3573. alt: ''
  3574. rel: ''
  3575. link_class: ''
  3576. prefix: ''
  3577. suffix: ''
  3578. target: ''
  3579. nl2br: false
  3580. max_length: 0
  3581. word_boundary: true
  3582. ellipsis: true
  3583. more_link: false
  3584. more_link_text: ''
  3585. more_link_path: ''
  3586. strip_tags: false
  3587. trim: false
  3588. preserve_tags: ''
  3589. html: false
  3590. element_type: ''
  3591. element_class: ''
  3592. element_label_type: ''
  3593. element_label_class: ''
  3594. element_label_colon: true
  3595. element_wrapper_type: ''
  3596. element_wrapper_class: ''
  3597. element_default_classes: true
  3598. empty: ''
  3599. hide_empty: false
  3600. empty_zero: false
  3601. hide_alter_empty: true
  3602. click_sort_column: target_id
  3603. type: entity_reference_label
  3604. settings:
  3605. link: true
  3606. group_column: target_id
  3607. group_columns: { }
  3608. group_rows: true
  3609. delta_limit: 0
  3610. delta_offset: 0
  3611. delta_reversed: false
  3612. delta_first_last: false
  3613. multi_type: separator
  3614. separator: '<br/>'
  3615. field_api_classes: false
  3616. plugin_id: field
  3617. name:
  3618. id: name
  3619. table: users_field_data
  3620. field: name
  3621. relationship: uid
  3622. label: Author
  3623. exclude: false
  3624. alter:
  3625. alter_text: false
  3626. element_class: ''
  3627. element_default_classes: true
  3628. empty: ''
  3629. hide_empty: false
  3630. empty_zero: false
  3631. hide_alter_empty: true
  3632. plugin_id: field
  3633. type: user_name
  3634. entity_type: user
  3635. entity_field: name
  3636. changed:
  3637. id: changed
  3638. table: node_field_data
  3639. field: changed
  3640. label: Updated
  3641. exclude: false
  3642. alter:
  3643. alter_text: false
  3644. element_class: ''
  3645. element_default_classes: true
  3646. empty: ''
  3647. hide_empty: false
  3648. empty_zero: false
  3649. hide_alter_empty: true
  3650. type: timestamp
  3651. settings:
  3652. date_format: short
  3653. custom_date_format: ''
  3654. timezone: ''
  3655. plugin_id: field
  3656. entity_type: node
  3657. entity_field: changed
  3658. display_plugin: page
  3659. display_title: Agenda
  3660. id: page_3
  3661. position: 2
  3662. cache_metadata:
  3663. contexts:
  3664. - 'languages:language_content'
  3665. - 'languages:language_interface'
  3666. - url
  3667. - url.query_args
  3668. - user
  3669. - 'user.node_grants:view'
  3670. - user.roles
  3671. max-age: -1
  3672. tags:
  3673. - 'config:field.storage.node.field_date'
  3674. - 'config:field.storage.node.field_page_liee'
  3675. - 'config:field.storage.node.field_workflow_generic'
  3676. page_4:
  3677. display_options:
  3678. path: admin/content/static
  3679. menu:
  3680. type: tab
  3681. title: Static
  3682. description: ''
  3683. expanded: false
  3684. parent: 'menu_link_content:8b5fed48-c008-4041-9bda-06f997582175'
  3685. weight: -96
  3686. context: '0'
  3687. menu_name: admin
  3688. tab_options:
  3689. type: normal
  3690. title: Content
  3691. description: 'Find and manage content'
  3692. menu_name: admin
  3693. weight: -10
  3694. display_extenders: { }
  3695. display_description: ''
  3696. access:
  3697. type: role
  3698. options:
  3699. role:
  3700. admin: admin
  3701. root: root
  3702. defaults:
  3703. access: false
  3704. filters: false
  3705. filter_groups: false
  3706. fields: false
  3707. title: false
  3708. filters:
  3709. status_extra:
  3710. id: status_extra
  3711. table: node_field_data
  3712. field: status_extra
  3713. operator: '='
  3714. value: false
  3715. plugin_id: node_status
  3716. group: 1
  3717. entity_type: node
  3718. field_workflow_generic_value:
  3719. id: field_workflow_generic_value
  3720. table: node__field_workflow_generic
  3721. field: field_workflow_generic_value
  3722. relationship: none
  3723. group_type: group
  3724. admin_label: ''
  3725. operator: or
  3726. value: { }
  3727. group: 1
  3728. exposed: true
  3729. expose:
  3730. operator_id: field_workflow_generic_value_op
  3731. label: Workflow
  3732. description: ''
  3733. use_operator: false
  3734. operator: field_workflow_generic_value_op
  3735. identifier: field_workflow_generic_value
  3736. required: false
  3737. remember: false
  3738. multiple: false
  3739. remember_roles:
  3740. authenticated: authenticated
  3741. anonymous: '0'
  3742. collectionneur: '0'
  3743. admin: '0'
  3744. root: '0'
  3745. invite: '0'
  3746. reduce: false
  3747. is_grouped: false
  3748. group_info:
  3749. label: ''
  3750. description: ''
  3751. identifier: ''
  3752. optional: true
  3753. widget: select
  3754. multiple: false
  3755. remember: false
  3756. default_group: All
  3757. default_group_multiple: { }
  3758. group_items: { }
  3759. reduce_duplicates: false
  3760. plugin_id: workflow_state
  3761. title:
  3762. id: title
  3763. table: node_field_data
  3764. field: title
  3765. relationship: none
  3766. group_type: group
  3767. admin_label: ''
  3768. operator: contains
  3769. value: ''
  3770. group: 1
  3771. exposed: true
  3772. expose:
  3773. operator_id: title_op
  3774. label: Title
  3775. description: ''
  3776. use_operator: false
  3777. operator: title_op
  3778. identifier: title
  3779. required: false
  3780. remember: false
  3781. multiple: false
  3782. remember_roles:
  3783. authenticated: authenticated
  3784. anonymous: '0'
  3785. administrator: '0'
  3786. placeholder: ''
  3787. is_grouped: false
  3788. group_info:
  3789. label: ''
  3790. description: ''
  3791. identifier: ''
  3792. optional: true
  3793. widget: select
  3794. multiple: false
  3795. remember: false
  3796. default_group: All
  3797. default_group_multiple: { }
  3798. group_items: { }
  3799. plugin_id: string
  3800. entity_type: node
  3801. entity_field: title
  3802. type:
  3803. id: type
  3804. table: node_field_data
  3805. field: type
  3806. relationship: none
  3807. group_type: group
  3808. admin_label: ''
  3809. operator: in
  3810. value:
  3811. static: static
  3812. group: 1
  3813. exposed: false
  3814. expose:
  3815. operator_id: ''
  3816. label: ''
  3817. description: ''
  3818. use_operator: false
  3819. operator: ''
  3820. identifier: ''
  3821. required: false
  3822. remember: false
  3823. multiple: false
  3824. remember_roles:
  3825. authenticated: authenticated
  3826. reduce: false
  3827. is_grouped: false
  3828. group_info:
  3829. label: ''
  3830. description: ''
  3831. identifier: ''
  3832. optional: true
  3833. widget: select
  3834. multiple: false
  3835. remember: false
  3836. default_group: All
  3837. default_group_multiple: { }
  3838. group_items: { }
  3839. entity_type: node
  3840. entity_field: type
  3841. plugin_id: bundle
  3842. langcode:
  3843. id: langcode
  3844. table: node_field_data
  3845. field: langcode
  3846. relationship: none
  3847. group_type: group
  3848. admin_label: ''
  3849. operator: in
  3850. value:
  3851. '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***'
  3852. und: und
  3853. group: 1
  3854. exposed: false
  3855. expose:
  3856. operator_id: ''
  3857. label: ''
  3858. description: ''
  3859. use_operator: false
  3860. operator: ''
  3861. identifier: ''
  3862. required: false
  3863. remember: false
  3864. multiple: false
  3865. remember_roles:
  3866. authenticated: authenticated
  3867. reduce: false
  3868. is_grouped: false
  3869. group_info:
  3870. label: ''
  3871. description: ''
  3872. identifier: ''
  3873. optional: true
  3874. widget: select
  3875. multiple: false
  3876. remember: false
  3877. default_group: All
  3878. default_group_multiple: { }
  3879. group_items: { }
  3880. entity_type: node
  3881. entity_field: langcode
  3882. plugin_id: language
  3883. filter_groups:
  3884. operator: AND
  3885. groups:
  3886. 1: AND
  3887. fields:
  3888. field_visuel:
  3889. id: field_visuel
  3890. table: node__field_visuel
  3891. field: field_visuel
  3892. relationship: none
  3893. group_type: group
  3894. admin_label: ''
  3895. label: Visuel
  3896. exclude: false
  3897. alter:
  3898. alter_text: false
  3899. text: ''
  3900. make_link: false
  3901. path: ''
  3902. absolute: false
  3903. external: false
  3904. replace_spaces: false
  3905. path_case: none
  3906. trim_whitespace: false
  3907. alt: ''
  3908. rel: ''
  3909. link_class: ''
  3910. prefix: ''
  3911. suffix: ''
  3912. target: ''
  3913. nl2br: false
  3914. max_length: 0
  3915. word_boundary: true
  3916. ellipsis: true
  3917. more_link: false
  3918. more_link_text: ''
  3919. more_link_path: ''
  3920. strip_tags: false
  3921. trim: false
  3922. preserve_tags: ''
  3923. html: false
  3924. element_type: ''
  3925. element_class: ''
  3926. element_label_type: ''
  3927. element_label_class: ''
  3928. element_label_colon: true
  3929. element_wrapper_type: ''
  3930. element_wrapper_class: ''
  3931. element_default_classes: true
  3932. empty: ''
  3933. hide_empty: false
  3934. empty_zero: false
  3935. hide_alter_empty: true
  3936. click_sort_column: target_id
  3937. type: image
  3938. settings:
  3939. image_style: thumbnail
  3940. image_link: ''
  3941. group_column: ''
  3942. group_columns: { }
  3943. group_rows: true
  3944. delta_limit: 0
  3945. delta_offset: 0
  3946. delta_reversed: false
  3947. delta_first_last: false
  3948. multi_type: separator
  3949. separator: ', '
  3950. field_api_classes: false
  3951. plugin_id: field
  3952. title:
  3953. id: title
  3954. table: node_field_data
  3955. field: title
  3956. label: Title
  3957. exclude: false
  3958. alter:
  3959. alter_text: false
  3960. element_class: ''
  3961. element_default_classes: true
  3962. empty: ''
  3963. hide_empty: false
  3964. empty_zero: false
  3965. hide_alter_empty: true
  3966. entity_type: node
  3967. entity_field: title
  3968. type: string
  3969. settings:
  3970. link_to_entity: true
  3971. plugin_id: field
  3972. field_workflow_generic:
  3973. id: field_workflow_generic
  3974. table: node__field_workflow_generic
  3975. field: field_workflow_generic
  3976. relationship: none
  3977. group_type: group
  3978. admin_label: ''
  3979. label: Workflow
  3980. exclude: false
  3981. alter:
  3982. alter_text: false
  3983. text: ''
  3984. make_link: false
  3985. path: ''
  3986. absolute: false
  3987. external: false
  3988. replace_spaces: false
  3989. path_case: none
  3990. trim_whitespace: false
  3991. alt: ''
  3992. rel: ''
  3993. link_class: ''
  3994. prefix: ''
  3995. suffix: ''
  3996. target: ''
  3997. nl2br: false
  3998. max_length: 0
  3999. word_boundary: true
  4000. ellipsis: true
  4001. more_link: false
  4002. more_link_text: ''
  4003. more_link_path: ''
  4004. strip_tags: false
  4005. trim: false
  4006. preserve_tags: ''
  4007. html: false
  4008. element_type: ''
  4009. element_class: ''
  4010. element_label_type: ''
  4011. element_label_class: ''
  4012. element_label_colon: true
  4013. element_wrapper_type: ''
  4014. element_wrapper_class: ''
  4015. element_default_classes: true
  4016. empty: ''
  4017. hide_empty: false
  4018. empty_zero: false
  4019. hide_alter_empty: true
  4020. click_sort_column: value
  4021. type: list_default
  4022. settings: { }
  4023. group_column: value
  4024. group_columns: { }
  4025. group_rows: true
  4026. delta_limit: 0
  4027. delta_offset: 0
  4028. delta_reversed: false
  4029. delta_first_last: false
  4030. multi_type: separator
  4031. separator: ', '
  4032. field_api_classes: false
  4033. plugin_id: field
  4034. operations:
  4035. id: operations
  4036. table: node
  4037. field: operations
  4038. relationship: none
  4039. group_type: group
  4040. admin_label: ''
  4041. label: Operations
  4042. exclude: false
  4043. alter:
  4044. alter_text: false
  4045. text: ''
  4046. make_link: false
  4047. path: ''
  4048. absolute: false
  4049. external: false
  4050. replace_spaces: false
  4051. path_case: none
  4052. trim_whitespace: false
  4053. alt: ''
  4054. rel: ''
  4055. link_class: ''
  4056. prefix: ''
  4057. suffix: ''
  4058. target: ''
  4059. nl2br: false
  4060. max_length: 0
  4061. word_boundary: true
  4062. ellipsis: true
  4063. more_link: false
  4064. more_link_text: ''
  4065. more_link_path: ''
  4066. strip_tags: false
  4067. trim: false
  4068. preserve_tags: ''
  4069. html: false
  4070. element_type: ''
  4071. element_class: ''
  4072. element_label_type: ''
  4073. element_label_class: ''
  4074. element_label_colon: true
  4075. element_wrapper_type: ''
  4076. element_wrapper_class: ''
  4077. element_default_classes: true
  4078. empty: ''
  4079. hide_empty: false
  4080. empty_zero: false
  4081. hide_alter_empty: true
  4082. destination: true
  4083. plugin_id: entity_operations
  4084. name:
  4085. id: name
  4086. table: users_field_data
  4087. field: name
  4088. relationship: uid
  4089. label: Author
  4090. exclude: false
  4091. alter:
  4092. alter_text: false
  4093. element_class: ''
  4094. element_default_classes: true
  4095. empty: ''
  4096. hide_empty: false
  4097. empty_zero: false
  4098. hide_alter_empty: true
  4099. plugin_id: field
  4100. type: user_name
  4101. entity_type: user
  4102. entity_field: name
  4103. changed:
  4104. id: changed
  4105. table: node_field_data
  4106. field: changed
  4107. label: Updated
  4108. exclude: false
  4109. alter:
  4110. alter_text: false
  4111. element_class: ''
  4112. element_default_classes: true
  4113. empty: ''
  4114. hide_empty: false
  4115. empty_zero: false
  4116. hide_alter_empty: true
  4117. type: timestamp
  4118. settings:
  4119. date_format: short
  4120. custom_date_format: ''
  4121. timezone: ''
  4122. plugin_id: field
  4123. entity_type: node
  4124. entity_field: changed
  4125. status:
  4126. id: status
  4127. table: node_field_data
  4128. field: status
  4129. relationship: none
  4130. group_type: group
  4131. admin_label: ''
  4132. label: Status
  4133. exclude: true
  4134. alter:
  4135. alter_text: false
  4136. text: ''
  4137. make_link: false
  4138. path: ''
  4139. absolute: false
  4140. external: false
  4141. replace_spaces: false
  4142. path_case: none
  4143. trim_whitespace: false
  4144. alt: ''
  4145. rel: ''
  4146. link_class: ''
  4147. prefix: ''
  4148. suffix: ''
  4149. target: ''
  4150. nl2br: false
  4151. max_length: 0
  4152. word_boundary: true
  4153. ellipsis: true
  4154. more_link: false
  4155. more_link_text: ''
  4156. more_link_path: ''
  4157. strip_tags: false
  4158. trim: false
  4159. preserve_tags: ''
  4160. html: false
  4161. element_type: ''
  4162. element_class: ''
  4163. element_label_type: ''
  4164. element_label_class: ''
  4165. element_label_colon: true
  4166. element_wrapper_type: ''
  4167. element_wrapper_class: ''
  4168. element_default_classes: true
  4169. empty: ''
  4170. hide_empty: false
  4171. empty_zero: false
  4172. hide_alter_empty: true
  4173. click_sort_column: value
  4174. type: boolean
  4175. settings:
  4176. format: custom
  4177. format_custom_true: Published
  4178. format_custom_false: Unpublished
  4179. group_column: value
  4180. group_columns: { }
  4181. group_rows: true
  4182. delta_limit: 0
  4183. delta_offset: 0
  4184. delta_reversed: false
  4185. delta_first_last: false
  4186. multi_type: separator
  4187. separator: ', '
  4188. field_api_classes: false
  4189. plugin_id: field
  4190. entity_type: node
  4191. entity_field: status
  4192. field_afficher_en_page_d_acceuil:
  4193. id: field_afficher_en_page_d_acceuil
  4194. table: node__field_afficher_en_page_d_acceuil
  4195. field: field_afficher_en_page_d_acceuil
  4196. relationship: none
  4197. group_type: group
  4198. admin_label: ''
  4199. label: 'Afficher en page d''acceuil'
  4200. exclude: false
  4201. alter:
  4202. alter_text: false
  4203. text: ''
  4204. make_link: false
  4205. path: ''
  4206. absolute: false
  4207. external: false
  4208. replace_spaces: false
  4209. path_case: none
  4210. trim_whitespace: false
  4211. alt: ''
  4212. rel: ''
  4213. link_class: ''
  4214. prefix: ''
  4215. suffix: ''
  4216. target: ''
  4217. nl2br: false
  4218. max_length: 0
  4219. word_boundary: true
  4220. ellipsis: true
  4221. more_link: false
  4222. more_link_text: ''
  4223. more_link_path: ''
  4224. strip_tags: false
  4225. trim: false
  4226. preserve_tags: ''
  4227. html: false
  4228. element_type: ''
  4229. element_class: ''
  4230. element_label_type: ''
  4231. element_label_class: ''
  4232. element_label_colon: true
  4233. element_wrapper_type: ''
  4234. element_wrapper_class: ''
  4235. element_default_classes: true
  4236. empty: ''
  4237. hide_empty: false
  4238. empty_zero: false
  4239. hide_alter_empty: true
  4240. click_sort_column: value
  4241. type: boolean
  4242. settings:
  4243. format: yes-no
  4244. format_custom_true: ''
  4245. format_custom_false: ''
  4246. group_column: value
  4247. group_columns: { }
  4248. group_rows: true
  4249. delta_limit: 0
  4250. delta_offset: 0
  4251. delta_reversed: false
  4252. delta_first_last: false
  4253. multi_type: separator
  4254. separator: ', '
  4255. field_api_classes: false
  4256. plugin_id: field
  4257. title: Static
  4258. display_plugin: page
  4259. display_title: Static
  4260. id: page_4
  4261. position: 2
  4262. cache_metadata:
  4263. contexts:
  4264. - 'languages:language_content'
  4265. - 'languages:language_interface'
  4266. - url
  4267. - url.query_args
  4268. - user
  4269. - 'user.node_grants:view'
  4270. - user.roles
  4271. max-age: -1
  4272. tags:
  4273. - 'config:field.storage.node.field_afficher_en_page_d_acceuil'
  4274. - 'config:field.storage.node.field_visuel'
  4275. - 'config:field.storage.node.field_workflow_generic'