views.view.content.yml 108 KB

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