views.view.content.yml 112 KB

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