views.view.content.yml 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007
  1. uuid: c8ad029c-fbfc-40f5-9665-a453924d5e25
  2. langcode: fr
  3. status: true
  4. dependencies:
  5. config:
  6. - field.storage.node.body
  7. - field.storage.node.field_collectionneurs
  8. - field.storage.node.field_date
  9. - field.storage.node.field_description
  10. - field.storage.node.field_entrees
  11. - field.storage.node.field_genres
  12. - field.storage.node.field_langues
  13. - field.storage.node.field_locuteurs
  14. - field.storage.node.field_page_type
  15. - field.storage.node.field_son
  16. - field.storage.node.field_visuel
  17. - image.style.thumbnail
  18. - node.type.autre_son
  19. - node.type.enregistrement
  20. - node.type.evenement
  21. - node.type.page
  22. - taxonomy.vocabulary.entrees
  23. - taxonomy.vocabulary.page_type
  24. - user.role.admin
  25. - user.role.collectionneur
  26. - user.role.root
  27. module:
  28. - audiofield
  29. - datetime
  30. - image
  31. - node
  32. - taxonomy
  33. - text
  34. - user
  35. _core:
  36. default_config_hash: YIwhIF9MSP1E_HMam6MrYeti_UqMXQiLDMjDsPFKK8s
  37. id: content
  38. label: Content
  39. module: node
  40. description: 'Find and manage content.'
  41. tag: default
  42. base_table: node_field_data
  43. base_field: nid
  44. core: 8.x
  45. display:
  46. default:
  47. display_options:
  48. access:
  49. type: role
  50. options:
  51. role:
  52. collectionneur: collectionneur
  53. admin: admin
  54. root: root
  55. cache:
  56. type: tag
  57. query:
  58. type: views_query
  59. exposed_form:
  60. type: basic
  61. options:
  62. submit_button: Filter
  63. reset_button: true
  64. reset_button_label: Reset
  65. exposed_sorts_label: 'Sort by'
  66. expose_sort_order: true
  67. sort_asc_label: Asc
  68. sort_desc_label: Desc
  69. pager:
  70. type: full
  71. options:
  72. items_per_page: 50
  73. tags:
  74. previous: '‹ Previous'
  75. next: 'Suivant ›'
  76. first: '« First'
  77. last: 'Last »'
  78. style:
  79. type: table
  80. options:
  81. grouping: { }
  82. row_class: ''
  83. default_row_class: true
  84. override: true
  85. sticky: true
  86. caption: ''
  87. summary: ''
  88. description: ''
  89. columns:
  90. node_bulk_form: node_bulk_form
  91. title: title
  92. field_son: title
  93. status: title
  94. operations: title
  95. field_description: field_description
  96. body: body
  97. field_entrees: field_entrees
  98. field_genres: field_genres
  99. field_locuteurs: field_locuteurs
  100. field_langues: field_langues
  101. field_collectionneurs: field_collectionneurs
  102. name: name
  103. changed: changed
  104. info:
  105. node_bulk_form:
  106. align: ''
  107. separator: ''
  108. empty_column: false
  109. responsive: ''
  110. title:
  111. sortable: true
  112. default_sort_order: asc
  113. align: ''
  114. separator: '<br/>'
  115. empty_column: false
  116. responsive: ''
  117. field_son:
  118. align: ''
  119. separator: ''
  120. empty_column: false
  121. responsive: ''
  122. status:
  123. sortable: true
  124. default_sort_order: asc
  125. align: ''
  126. separator: ''
  127. empty_column: false
  128. responsive: ''
  129. operations:
  130. align: ''
  131. separator: ''
  132. empty_column: false
  133. responsive: ''
  134. field_description:
  135. sortable: false
  136. default_sort_order: asc
  137. align: ''
  138. separator: ''
  139. empty_column: false
  140. responsive: ''
  141. body:
  142. sortable: false
  143. default_sort_order: asc
  144. align: ''
  145. separator: ''
  146. empty_column: false
  147. responsive: ''
  148. field_entrees:
  149. align: ''
  150. separator: ''
  151. empty_column: false
  152. responsive: ''
  153. field_genres:
  154. align: ''
  155. separator: ''
  156. empty_column: false
  157. responsive: ''
  158. field_locuteurs:
  159. align: ''
  160. separator: ''
  161. empty_column: false
  162. responsive: ''
  163. field_langues:
  164. align: ''
  165. separator: ''
  166. empty_column: false
  167. responsive: ''
  168. field_collectionneurs:
  169. align: ''
  170. separator: ''
  171. empty_column: false
  172. responsive: ''
  173. name:
  174. sortable: false
  175. default_sort_order: asc
  176. align: ''
  177. separator: ''
  178. empty_column: false
  179. responsive: priority-low
  180. changed:
  181. sortable: true
  182. default_sort_order: desc
  183. align: ''
  184. separator: ''
  185. empty_column: false
  186. responsive: priority-low
  187. default: changed
  188. empty_table: true
  189. row:
  190. type: fields
  191. fields:
  192. node_bulk_form:
  193. id: node_bulk_form
  194. table: node
  195. field: node_bulk_form
  196. label: ''
  197. exclude: false
  198. alter:
  199. alter_text: false
  200. element_class: ''
  201. element_default_classes: true
  202. empty: ''
  203. hide_empty: false
  204. empty_zero: false
  205. hide_alter_empty: true
  206. plugin_id: node_bulk_form
  207. entity_type: node
  208. field_visuel:
  209. id: field_visuel
  210. table: node__field_visuel
  211. field: field_visuel
  212. relationship: none
  213. group_type: group
  214. admin_label: ''
  215. label: Visuel
  216. exclude: false
  217. alter:
  218. alter_text: false
  219. text: ''
  220. make_link: false
  221. path: ''
  222. absolute: false
  223. external: false
  224. replace_spaces: false
  225. path_case: none
  226. trim_whitespace: false
  227. alt: ''
  228. rel: ''
  229. link_class: ''
  230. prefix: ''
  231. suffix: ''
  232. target: ''
  233. nl2br: false
  234. max_length: 0
  235. word_boundary: true
  236. ellipsis: true
  237. more_link: false
  238. more_link_text: ''
  239. more_link_path: ''
  240. strip_tags: false
  241. trim: false
  242. preserve_tags: ''
  243. html: false
  244. element_type: ''
  245. element_class: ''
  246. element_label_type: ''
  247. element_label_class: ''
  248. element_label_colon: true
  249. element_wrapper_type: ''
  250. element_wrapper_class: ''
  251. element_default_classes: true
  252. empty: ''
  253. hide_empty: false
  254. empty_zero: false
  255. hide_alter_empty: true
  256. click_sort_column: target_id
  257. type: image
  258. settings:
  259. image_style: thumbnail
  260. image_link: ''
  261. group_column: ''
  262. group_columns: { }
  263. group_rows: true
  264. delta_limit: 0
  265. delta_offset: 0
  266. delta_reversed: false
  267. delta_first_last: false
  268. multi_type: separator
  269. separator: ', '
  270. field_api_classes: false
  271. plugin_id: field
  272. type:
  273. id: type
  274. table: node_field_data
  275. field: type
  276. relationship: none
  277. group_type: group
  278. admin_label: ''
  279. label: 'Content type'
  280. exclude: false
  281. alter:
  282. alter_text: false
  283. text: ''
  284. make_link: false
  285. path: ''
  286. absolute: false
  287. external: false
  288. replace_spaces: false
  289. path_case: none
  290. trim_whitespace: false
  291. alt: ''
  292. rel: ''
  293. link_class: ''
  294. prefix: ''
  295. suffix: ''
  296. target: ''
  297. nl2br: false
  298. max_length: 0
  299. word_boundary: true
  300. ellipsis: true
  301. more_link: false
  302. more_link_text: ''
  303. more_link_path: ''
  304. strip_tags: false
  305. trim: false
  306. preserve_tags: ''
  307. html: false
  308. element_type: ''
  309. element_class: ''
  310. element_label_type: ''
  311. element_label_class: ''
  312. element_label_colon: true
  313. element_wrapper_type: ''
  314. element_wrapper_class: ''
  315. element_default_classes: true
  316. empty: ''
  317. hide_empty: false
  318. empty_zero: false
  319. hide_alter_empty: true
  320. click_sort_column: target_id
  321. type: entity_reference_label
  322. settings:
  323. link: false
  324. group_column: target_id
  325. group_columns: { }
  326. group_rows: true
  327. delta_limit: 0
  328. delta_offset: 0
  329. delta_reversed: false
  330. delta_first_last: false
  331. multi_type: separator
  332. separator: ', '
  333. field_api_classes: false
  334. entity_type: node
  335. entity_field: type
  336. plugin_id: field
  337. field_page_type:
  338. id: field_page_type
  339. table: node__field_page_type
  340. field: field_page_type
  341. relationship: none
  342. group_type: group
  343. admin_label: ''
  344. label: 'Type de page'
  345. exclude: false
  346. alter:
  347. alter_text: false
  348. text: ''
  349. make_link: false
  350. path: ''
  351. absolute: false
  352. external: false
  353. replace_spaces: false
  354. path_case: none
  355. trim_whitespace: false
  356. alt: ''
  357. rel: ''
  358. link_class: ''
  359. prefix: ''
  360. suffix: ''
  361. target: ''
  362. nl2br: false
  363. max_length: 0
  364. word_boundary: true
  365. ellipsis: true
  366. more_link: false
  367. more_link_text: ''
  368. more_link_path: ''
  369. strip_tags: false
  370. trim: false
  371. preserve_tags: ''
  372. html: false
  373. element_type: ''
  374. element_class: ''
  375. element_label_type: ''
  376. element_label_class: ''
  377. element_label_colon: true
  378. element_wrapper_type: ''
  379. element_wrapper_class: ''
  380. element_default_classes: true
  381. empty: ''
  382. hide_empty: false
  383. empty_zero: false
  384. hide_alter_empty: true
  385. click_sort_column: target_id
  386. type: entity_reference_label
  387. settings:
  388. link: false
  389. group_column: target_id
  390. group_columns: { }
  391. group_rows: true
  392. delta_limit: 0
  393. delta_offset: 0
  394. delta_reversed: false
  395. delta_first_last: false
  396. multi_type: separator
  397. separator: ', '
  398. field_api_classes: false
  399. plugin_id: field
  400. title:
  401. id: title
  402. table: node_field_data
  403. field: title
  404. label: Title
  405. exclude: false
  406. alter:
  407. alter_text: false
  408. element_class: ''
  409. element_default_classes: true
  410. empty: ''
  411. hide_empty: false
  412. empty_zero: false
  413. hide_alter_empty: true
  414. entity_type: node
  415. entity_field: title
  416. type: string
  417. settings:
  418. link_to_entity: true
  419. plugin_id: field
  420. field_son:
  421. id: field_son
  422. table: node__field_son
  423. field: field_son
  424. relationship: none
  425. group_type: group
  426. admin_label: ''
  427. label: Son
  428. exclude: false
  429. alter:
  430. alter_text: false
  431. text: ''
  432. make_link: false
  433. path: ''
  434. absolute: false
  435. external: false
  436. replace_spaces: false
  437. path_case: none
  438. trim_whitespace: false
  439. alt: ''
  440. rel: ''
  441. link_class: ''
  442. prefix: ''
  443. suffix: ''
  444. target: ''
  445. nl2br: false
  446. max_length: 0
  447. word_boundary: true
  448. ellipsis: true
  449. more_link: false
  450. more_link_text: ''
  451. more_link_path: ''
  452. strip_tags: false
  453. trim: false
  454. preserve_tags: ''
  455. html: false
  456. element_type: ''
  457. element_class: ''
  458. element_label_type: ''
  459. element_label_class: ''
  460. element_label_colon: true
  461. element_wrapper_type: ''
  462. element_wrapper_class: ''
  463. element_default_classes: true
  464. empty: ''
  465. hide_empty: false
  466. empty_zero: false
  467. hide_alter_empty: true
  468. click_sort_column: target_id
  469. type: audiofield_audioplayer
  470. settings:
  471. audio_player: default_mp3_player
  472. audio_player_jplayer_theme: none
  473. audio_player_wavesurfer_combine_files: 0
  474. audio_player_wordpress_combine_files: 0
  475. audio_player_wordpress_animation: 0
  476. audio_player_soundmanager_theme: default
  477. audio_player_initial_volume: '8'
  478. audio_player_autoplay: 0
  479. download_link: 0
  480. group_column: ''
  481. group_columns: { }
  482. group_rows: true
  483. delta_limit: 0
  484. delta_offset: 0
  485. delta_reversed: false
  486. delta_first_last: false
  487. multi_type: separator
  488. separator: ', '
  489. field_api_classes: false
  490. plugin_id: field
  491. field_date:
  492. id: field_date
  493. table: node__field_date
  494. field: field_date
  495. relationship: none
  496. group_type: group
  497. admin_label: ''
  498. label: Date
  499. exclude: false
  500. alter:
  501. alter_text: false
  502. text: ''
  503. make_link: false
  504. path: ''
  505. absolute: false
  506. external: false
  507. replace_spaces: false
  508. path_case: none
  509. trim_whitespace: false
  510. alt: ''
  511. rel: ''
  512. link_class: ''
  513. prefix: ''
  514. suffix: ''
  515. target: ''
  516. nl2br: false
  517. max_length: 0
  518. word_boundary: true
  519. ellipsis: true
  520. more_link: false
  521. more_link_text: ''
  522. more_link_path: ''
  523. strip_tags: false
  524. trim: false
  525. preserve_tags: ''
  526. html: false
  527. element_type: ''
  528. element_class: ''
  529. element_label_type: ''
  530. element_label_class: ''
  531. element_label_colon: true
  532. element_wrapper_type: ''
  533. element_wrapper_class: ''
  534. element_default_classes: true
  535. empty: ''
  536. hide_empty: false
  537. empty_zero: false
  538. hide_alter_empty: true
  539. click_sort_column: value
  540. type: datetime_default
  541. settings:
  542. timezone_override: ''
  543. format_type: html_date
  544. group_column: value
  545. group_columns: { }
  546. group_rows: true
  547. delta_limit: 0
  548. delta_offset: 0
  549. delta_reversed: false
  550. delta_first_last: false
  551. multi_type: separator
  552. separator: ', '
  553. field_api_classes: false
  554. plugin_id: field
  555. term_node_tid:
  556. id: term_node_tid
  557. table: node_field_data
  558. field: term_node_tid
  559. relationship: none
  560. group_type: group
  561. admin_label: ''
  562. label: Entrées
  563. exclude: false
  564. alter:
  565. alter_text: false
  566. text: ''
  567. make_link: false
  568. path: ''
  569. absolute: false
  570. external: false
  571. replace_spaces: false
  572. path_case: none
  573. trim_whitespace: false
  574. alt: ''
  575. rel: ''
  576. link_class: ''
  577. prefix: ''
  578. suffix: ''
  579. target: ''
  580. nl2br: false
  581. max_length: 0
  582. word_boundary: true
  583. ellipsis: true
  584. more_link: false
  585. more_link_text: ''
  586. more_link_path: ''
  587. strip_tags: false
  588. trim: false
  589. preserve_tags: ''
  590. html: false
  591. element_type: ''
  592. element_class: ''
  593. element_label_type: ''
  594. element_label_class: ''
  595. element_label_colon: true
  596. element_wrapper_type: ''
  597. element_wrapper_class: ''
  598. element_default_classes: true
  599. empty: ''
  600. hide_empty: false
  601. empty_zero: false
  602. hide_alter_empty: true
  603. type: ul
  604. separator: ', '
  605. link_to_taxonomy: false
  606. limit: true
  607. vids:
  608. entrees: entrees
  609. collectionneurs: '0'
  610. genres: '0'
  611. langues: '0'
  612. locuteurs: '0'
  613. page_type: '0'
  614. entity_type: node
  615. plugin_id: taxonomy_index_tid
  616. name:
  617. id: name
  618. table: users_field_data
  619. field: name
  620. relationship: uid
  621. label: Author
  622. exclude: false
  623. alter:
  624. alter_text: false
  625. element_class: ''
  626. element_default_classes: true
  627. empty: ''
  628. hide_empty: false
  629. empty_zero: false
  630. hide_alter_empty: true
  631. plugin_id: field
  632. type: user_name
  633. entity_type: user
  634. entity_field: name
  635. changed:
  636. id: changed
  637. table: node_field_data
  638. field: changed
  639. label: Updated
  640. exclude: false
  641. alter:
  642. alter_text: false
  643. element_class: ''
  644. element_default_classes: true
  645. empty: ''
  646. hide_empty: false
  647. empty_zero: false
  648. hide_alter_empty: true
  649. type: timestamp
  650. settings:
  651. date_format: short
  652. custom_date_format: ''
  653. timezone: ''
  654. plugin_id: field
  655. entity_type: node
  656. entity_field: changed
  657. status:
  658. id: status
  659. table: node_field_data
  660. field: status
  661. label: Status
  662. exclude: false
  663. alter:
  664. alter_text: false
  665. element_class: ''
  666. element_default_classes: true
  667. empty: ''
  668. hide_empty: false
  669. empty_zero: false
  670. hide_alter_empty: true
  671. type: boolean
  672. settings:
  673. format: custom
  674. format_custom_true: Published
  675. format_custom_false: Unpublished
  676. plugin_id: field
  677. entity_type: node
  678. entity_field: status
  679. operations:
  680. id: operations
  681. table: node
  682. field: operations
  683. relationship: none
  684. group_type: group
  685. admin_label: ''
  686. label: Operations
  687. exclude: false
  688. alter:
  689. alter_text: false
  690. text: ''
  691. make_link: false
  692. path: ''
  693. absolute: false
  694. external: false
  695. replace_spaces: false
  696. path_case: none
  697. trim_whitespace: false
  698. alt: ''
  699. rel: ''
  700. link_class: ''
  701. prefix: ''
  702. suffix: ''
  703. target: ''
  704. nl2br: false
  705. max_length: 0
  706. word_boundary: true
  707. ellipsis: true
  708. more_link: false
  709. more_link_text: ''
  710. more_link_path: ''
  711. strip_tags: false
  712. trim: false
  713. preserve_tags: ''
  714. html: false
  715. element_type: ''
  716. element_class: ''
  717. element_label_type: ''
  718. element_label_class: ''
  719. element_label_colon: true
  720. element_wrapper_type: ''
  721. element_wrapper_class: ''
  722. element_default_classes: true
  723. empty: ''
  724. hide_empty: false
  725. empty_zero: false
  726. hide_alter_empty: true
  727. destination: true
  728. plugin_id: entity_operations
  729. filters:
  730. status_extra:
  731. id: status_extra
  732. table: node_field_data
  733. field: status_extra
  734. operator: '='
  735. value: false
  736. plugin_id: node_status
  737. group: 1
  738. entity_type: node
  739. status:
  740. id: status
  741. table: node_field_data
  742. field: status
  743. relationship: none
  744. group_type: group
  745. admin_label: ''
  746. operator: '='
  747. value: '1'
  748. group: 1
  749. exposed: true
  750. expose:
  751. operator_id: ''
  752. label: Status
  753. description: ''
  754. use_operator: false
  755. operator: status_op
  756. identifier: status
  757. required: false
  758. remember: false
  759. multiple: false
  760. remember_roles:
  761. authenticated: authenticated
  762. is_grouped: true
  763. group_info:
  764. label: 'Published status'
  765. description: ''
  766. identifier: status
  767. optional: true
  768. widget: select
  769. multiple: false
  770. remember: false
  771. default_group: All
  772. default_group_multiple: { }
  773. group_items:
  774. 1:
  775. title: Published
  776. operator: '='
  777. value: '1'
  778. 2:
  779. title: Unpublished
  780. operator: '='
  781. value: '0'
  782. plugin_id: boolean
  783. entity_type: node
  784. entity_field: status
  785. type:
  786. id: type
  787. table: node_field_data
  788. field: type
  789. relationship: none
  790. group_type: group
  791. admin_label: ''
  792. operator: in
  793. value:
  794. autre_son: autre_son
  795. page: page
  796. evenement: evenement
  797. group: 1
  798. exposed: true
  799. expose:
  800. operator_id: type_op
  801. label: 'Content type'
  802. description: ''
  803. use_operator: false
  804. operator: type_op
  805. identifier: type
  806. required: false
  807. remember: false
  808. multiple: false
  809. remember_roles:
  810. authenticated: authenticated
  811. anonymous: '0'
  812. collectionneur: '0'
  813. admin: '0'
  814. root: '0'
  815. reduce: true
  816. is_grouped: false
  817. group_info:
  818. label: ''
  819. description: ''
  820. identifier: ''
  821. optional: true
  822. widget: select
  823. multiple: false
  824. remember: false
  825. default_group: All
  826. default_group_multiple: { }
  827. group_items: { }
  828. plugin_id: bundle
  829. entity_type: node
  830. entity_field: type
  831. title:
  832. id: title
  833. table: node_field_data
  834. field: title
  835. relationship: none
  836. group_type: group
  837. admin_label: ''
  838. operator: contains
  839. value: ''
  840. group: 1
  841. exposed: true
  842. expose:
  843. operator_id: title_op
  844. label: Title
  845. description: ''
  846. use_operator: false
  847. operator: title_op
  848. identifier: title
  849. required: false
  850. remember: false
  851. multiple: false
  852. remember_roles:
  853. authenticated: authenticated
  854. anonymous: '0'
  855. administrator: '0'
  856. is_grouped: false
  857. group_info:
  858. label: ''
  859. description: ''
  860. identifier: ''
  861. optional: true
  862. widget: select
  863. multiple: false
  864. remember: false
  865. default_group: All
  866. default_group_multiple: { }
  867. group_items: { }
  868. plugin_id: string
  869. entity_type: node
  870. entity_field: title
  871. type_1:
  872. id: type_1
  873. table: node_field_data
  874. field: type
  875. relationship: none
  876. group_type: group
  877. admin_label: ''
  878. operator: 'not in'
  879. value:
  880. enregistrement: enregistrement
  881. group: 1
  882. exposed: false
  883. expose:
  884. operator_id: ''
  885. label: ''
  886. description: ''
  887. use_operator: false
  888. operator: ''
  889. identifier: ''
  890. required: false
  891. remember: false
  892. multiple: false
  893. remember_roles:
  894. authenticated: authenticated
  895. reduce: false
  896. is_grouped: false
  897. group_info:
  898. label: ''
  899. description: ''
  900. identifier: ''
  901. optional: true
  902. widget: select
  903. multiple: false
  904. remember: false
  905. default_group: All
  906. default_group_multiple: { }
  907. group_items: { }
  908. entity_type: node
  909. entity_field: type
  910. plugin_id: bundle
  911. field_page_type_target_id:
  912. id: field_page_type_target_id
  913. table: node__field_page_type
  914. field: field_page_type_target_id
  915. relationship: none
  916. group_type: group
  917. admin_label: ''
  918. operator: or
  919. value: { }
  920. group: 1
  921. exposed: true
  922. expose:
  923. operator_id: field_page_type_target_id_op
  924. label: 'Type de page (field_page_type)'
  925. description: ''
  926. use_operator: false
  927. operator: field_page_type_target_id_op
  928. identifier: field_page_type_target_id
  929. required: false
  930. remember: false
  931. multiple: false
  932. remember_roles:
  933. authenticated: authenticated
  934. anonymous: '0'
  935. collectionneur: '0'
  936. admin: '0'
  937. root: '0'
  938. reduce: false
  939. is_grouped: false
  940. group_info:
  941. label: ''
  942. description: ''
  943. identifier: ''
  944. optional: true
  945. widget: select
  946. multiple: false
  947. remember: false
  948. default_group: All
  949. default_group_multiple: { }
  950. group_items: { }
  951. reduce_duplicates: false
  952. type: select
  953. limit: true
  954. vid: page_type
  955. hierarchy: false
  956. error_message: true
  957. plugin_id: taxonomy_index_tid
  958. sorts: { }
  959. title: Content
  960. empty:
  961. area_text_custom:
  962. id: area_text_custom
  963. table: views
  964. field: area_text_custom
  965. empty: true
  966. content: 'No content available.'
  967. plugin_id: text_custom
  968. arguments: { }
  969. relationships:
  970. uid:
  971. id: uid
  972. table: node_field_data
  973. field: uid
  974. admin_label: author
  975. required: true
  976. plugin_id: standard
  977. show_admin_links: false
  978. filter_groups:
  979. operator: AND
  980. groups:
  981. 1: AND
  982. display_extenders: { }
  983. header:
  984. result:
  985. id: result
  986. table: views
  987. field: result
  988. relationship: none
  989. group_type: group
  990. admin_label: ''
  991. empty: false
  992. content: 'Affichage de @start à @end sur @total'
  993. plugin_id: result
  994. display_plugin: default
  995. display_title: Master
  996. id: default
  997. position: 0
  998. cache_metadata:
  999. contexts:
  1000. - 'languages:language_content'
  1001. - 'languages:language_interface'
  1002. - url
  1003. - url.query_args
  1004. - user
  1005. - 'user.node_grants:view'
  1006. - user.roles
  1007. max-age: 0
  1008. tags:
  1009. - 'config:field.storage.node.field_date'
  1010. - 'config:field.storage.node.field_page_type'
  1011. - 'config:field.storage.node.field_son'
  1012. - 'config:field.storage.node.field_visuel'
  1013. page_1:
  1014. display_options:
  1015. path: admin/content/node
  1016. menu:
  1017. type: tab
  1018. title: Pages
  1019. description: ''
  1020. expanded: false
  1021. parent: system.admin_content
  1022. weight: -10
  1023. context: '0'
  1024. menu_name: admin
  1025. tab_options:
  1026. type: normal
  1027. title: Content
  1028. description: 'Find and manage content'
  1029. menu_name: admin
  1030. weight: -10
  1031. display_extenders: { }
  1032. display_description: ''
  1033. access:
  1034. type: role
  1035. options:
  1036. role:
  1037. admin: admin
  1038. root: root
  1039. defaults:
  1040. access: false
  1041. display_plugin: page
  1042. display_title: Pages
  1043. id: page_1
  1044. position: 2
  1045. cache_metadata:
  1046. contexts:
  1047. - 'languages:language_content'
  1048. - 'languages:language_interface'
  1049. - url
  1050. - url.query_args
  1051. - user
  1052. - 'user.node_grants:view'
  1053. - user.roles
  1054. max-age: 0
  1055. tags:
  1056. - 'config:field.storage.node.field_date'
  1057. - 'config:field.storage.node.field_page_type'
  1058. - 'config:field.storage.node.field_son'
  1059. - 'config:field.storage.node.field_visuel'
  1060. page_2:
  1061. display_options:
  1062. path: admin/content/corpus
  1063. menu:
  1064. type: tab
  1065. title: Corpus
  1066. description: ''
  1067. expanded: false
  1068. parent: system.admin_content
  1069. weight: -11
  1070. context: '0'
  1071. menu_name: admin
  1072. tab_options:
  1073. type: tab
  1074. title: Corpus
  1075. description: 'Find and manage content'
  1076. weight: -10
  1077. display_extenders: { }
  1078. display_description: ''
  1079. filters:
  1080. status_extra:
  1081. id: status_extra
  1082. table: node_field_data
  1083. field: status_extra
  1084. operator: '='
  1085. value: false
  1086. plugin_id: node_status
  1087. group: 1
  1088. entity_type: node
  1089. type:
  1090. id: type
  1091. table: node_field_data
  1092. field: type
  1093. relationship: none
  1094. group_type: group
  1095. admin_label: ''
  1096. operator: in
  1097. value:
  1098. enregistrement: enregistrement
  1099. group: 1
  1100. exposed: false
  1101. expose:
  1102. operator_id: type_op
  1103. label: 'Content type'
  1104. description: ''
  1105. use_operator: false
  1106. operator: type_op
  1107. identifier: type
  1108. required: false
  1109. remember: false
  1110. multiple: false
  1111. remember_roles:
  1112. authenticated: authenticated
  1113. anonymous: '0'
  1114. administrator: '0'
  1115. reduce: false
  1116. is_grouped: false
  1117. group_info:
  1118. label: ''
  1119. description: ''
  1120. identifier: ''
  1121. optional: true
  1122. widget: select
  1123. multiple: false
  1124. remember: false
  1125. default_group: All
  1126. default_group_multiple: { }
  1127. group_items: { }
  1128. plugin_id: bundle
  1129. entity_type: node
  1130. entity_field: type
  1131. title:
  1132. id: title
  1133. table: node_field_data
  1134. field: title
  1135. relationship: none
  1136. group_type: group
  1137. admin_label: ''
  1138. operator: contains
  1139. value: ''
  1140. group: 1
  1141. exposed: true
  1142. expose:
  1143. operator_id: title_op
  1144. label: Title
  1145. description: ''
  1146. use_operator: false
  1147. operator: title_op
  1148. identifier: title
  1149. required: false
  1150. remember: false
  1151. multiple: false
  1152. remember_roles:
  1153. authenticated: authenticated
  1154. anonymous: '0'
  1155. administrator: '0'
  1156. is_grouped: false
  1157. group_info:
  1158. label: ''
  1159. description: ''
  1160. identifier: ''
  1161. optional: true
  1162. widget: select
  1163. multiple: false
  1164. remember: false
  1165. default_group: All
  1166. default_group_multiple: { }
  1167. group_items: { }
  1168. plugin_id: string
  1169. entity_type: node
  1170. entity_field: title
  1171. body_value:
  1172. id: body_value
  1173. table: node__body
  1174. field: body_value
  1175. relationship: none
  1176. group_type: group
  1177. admin_label: ''
  1178. operator: 'not empty'
  1179. value: ''
  1180. group: 1
  1181. exposed: true
  1182. expose:
  1183. operator_id: body_value_op
  1184. label: Article
  1185. description: ''
  1186. use_operator: true
  1187. operator: body_value_op
  1188. identifier: body_value
  1189. required: false
  1190. remember: false
  1191. multiple: false
  1192. remember_roles:
  1193. authenticated: authenticated
  1194. anonymous: '0'
  1195. collectionneur: '0'
  1196. admin: '0'
  1197. root: '0'
  1198. invite: '0'
  1199. is_grouped: true
  1200. group_info:
  1201. label: Article
  1202. description: ''
  1203. identifier: body_value
  1204. optional: true
  1205. widget: radios
  1206. multiple: false
  1207. remember: false
  1208. default_group: All
  1209. default_group_multiple: { }
  1210. group_items:
  1211. 1:
  1212. title: renseigné
  1213. operator: 'not empty'
  1214. value: ''
  1215. 2:
  1216. title: vide
  1217. operator: empty
  1218. value: ''
  1219. plugin_id: string
  1220. field_entrees_target_id:
  1221. id: field_entrees_target_id
  1222. table: node__field_entrees
  1223. field: field_entrees_target_id
  1224. relationship: none
  1225. group_type: group
  1226. admin_label: ''
  1227. operator: or
  1228. value: { }
  1229. group: 1
  1230. exposed: true
  1231. expose:
  1232. operator_id: field_entrees_target_id_op
  1233. label: Entrée(s)
  1234. description: ''
  1235. use_operator: false
  1236. operator: field_entrees_target_id_op
  1237. identifier: field_entrees_target_id
  1238. required: false
  1239. remember: false
  1240. multiple: false
  1241. remember_roles:
  1242. authenticated: authenticated
  1243. anonymous: '0'
  1244. collectionneur: '0'
  1245. admin: '0'
  1246. root: '0'
  1247. invite: '0'
  1248. reduce: false
  1249. is_grouped: false
  1250. group_info:
  1251. label: ''
  1252. description: ''
  1253. identifier: ''
  1254. optional: true
  1255. widget: select
  1256. multiple: false
  1257. remember: false
  1258. default_group: All
  1259. default_group_multiple: { }
  1260. group_items: { }
  1261. reduce_duplicates: false
  1262. type: select
  1263. limit: true
  1264. vid: entrees
  1265. hierarchy: true
  1266. error_message: true
  1267. plugin_id: taxonomy_index_tid
  1268. status:
  1269. id: status
  1270. table: node_field_data
  1271. field: status
  1272. relationship: none
  1273. group_type: group
  1274. admin_label: ''
  1275. operator: '='
  1276. value: '1'
  1277. group: 1
  1278. exposed: true
  1279. expose:
  1280. operator_id: ''
  1281. label: Status
  1282. description: ''
  1283. use_operator: false
  1284. operator: status_op
  1285. identifier: status
  1286. required: false
  1287. remember: false
  1288. multiple: false
  1289. remember_roles:
  1290. authenticated: authenticated
  1291. is_grouped: true
  1292. group_info:
  1293. label: 'Published status'
  1294. description: ''
  1295. identifier: status
  1296. optional: true
  1297. widget: select
  1298. multiple: false
  1299. remember: false
  1300. default_group: All
  1301. default_group_multiple: { }
  1302. group_items:
  1303. 1:
  1304. title: Published
  1305. operator: '='
  1306. value: '1'
  1307. 2:
  1308. title: Unpublished
  1309. operator: '='
  1310. value: '0'
  1311. plugin_id: boolean
  1312. entity_type: node
  1313. entity_field: status
  1314. defaults:
  1315. filters: false
  1316. filter_groups: false
  1317. title: false
  1318. fields: false
  1319. filter_groups:
  1320. operator: AND
  1321. groups:
  1322. 1: AND
  1323. title: Corpus
  1324. fields:
  1325. node_bulk_form:
  1326. id: node_bulk_form
  1327. table: node
  1328. field: node_bulk_form
  1329. label: ''
  1330. exclude: false
  1331. alter:
  1332. alter_text: false
  1333. element_class: ''
  1334. element_default_classes: true
  1335. empty: ''
  1336. hide_empty: false
  1337. empty_zero: false
  1338. hide_alter_empty: true
  1339. plugin_id: node_bulk_form
  1340. entity_type: node
  1341. title:
  1342. id: title
  1343. table: node_field_data
  1344. field: title
  1345. label: Title
  1346. exclude: false
  1347. alter:
  1348. alter_text: false
  1349. element_class: ''
  1350. element_default_classes: true
  1351. empty: ''
  1352. hide_empty: false
  1353. empty_zero: false
  1354. hide_alter_empty: true
  1355. entity_type: node
  1356. entity_field: title
  1357. type: string
  1358. settings:
  1359. link_to_entity: true
  1360. plugin_id: field
  1361. field_son:
  1362. id: field_son
  1363. table: node__field_son
  1364. field: field_son
  1365. relationship: none
  1366. group_type: group
  1367. admin_label: ''
  1368. label: Son
  1369. exclude: false
  1370. alter:
  1371. alter_text: false
  1372. text: ''
  1373. make_link: false
  1374. path: ''
  1375. absolute: false
  1376. external: false
  1377. replace_spaces: false
  1378. path_case: none
  1379. trim_whitespace: false
  1380. alt: ''
  1381. rel: ''
  1382. link_class: ''
  1383. prefix: ''
  1384. suffix: ''
  1385. target: ''
  1386. nl2br: false
  1387. max_length: 0
  1388. word_boundary: true
  1389. ellipsis: true
  1390. more_link: false
  1391. more_link_text: ''
  1392. more_link_path: ''
  1393. strip_tags: false
  1394. trim: false
  1395. preserve_tags: ''
  1396. html: false
  1397. element_type: ''
  1398. element_class: ''
  1399. element_label_type: ''
  1400. element_label_class: ''
  1401. element_label_colon: true
  1402. element_wrapper_type: ''
  1403. element_wrapper_class: ''
  1404. element_default_classes: true
  1405. empty: ''
  1406. hide_empty: false
  1407. empty_zero: false
  1408. hide_alter_empty: true
  1409. click_sort_column: target_id
  1410. type: audiofield_audioplayer
  1411. settings:
  1412. audio_player: default_mp3_player
  1413. audio_player_jplayer_theme: none
  1414. audio_player_wavesurfer_combine_files: 0
  1415. audio_player_wordpress_combine_files: 0
  1416. audio_player_wordpress_animation: 0
  1417. audio_player_soundmanager_theme: default
  1418. audio_player_initial_volume: '8'
  1419. audio_player_autoplay: 0
  1420. download_link: 0
  1421. group_column: ''
  1422. group_columns: { }
  1423. group_rows: true
  1424. delta_limit: 0
  1425. delta_offset: 0
  1426. delta_reversed: false
  1427. delta_first_last: false
  1428. multi_type: separator
  1429. separator: ', '
  1430. field_api_classes: false
  1431. plugin_id: field
  1432. status:
  1433. id: status
  1434. table: node_field_data
  1435. field: status
  1436. label: Status
  1437. exclude: false
  1438. alter:
  1439. alter_text: false
  1440. element_class: ''
  1441. element_default_classes: true
  1442. empty: ''
  1443. hide_empty: false
  1444. empty_zero: false
  1445. hide_alter_empty: true
  1446. type: boolean
  1447. settings:
  1448. format: custom
  1449. format_custom_true: Published
  1450. format_custom_false: Unpublished
  1451. plugin_id: field
  1452. entity_type: node
  1453. entity_field: status
  1454. operations:
  1455. id: operations
  1456. table: node
  1457. field: operations
  1458. relationship: none
  1459. group_type: group
  1460. admin_label: ''
  1461. label: Operations
  1462. exclude: false
  1463. alter:
  1464. alter_text: false
  1465. text: ''
  1466. make_link: false
  1467. path: ''
  1468. absolute: false
  1469. external: false
  1470. replace_spaces: false
  1471. path_case: none
  1472. trim_whitespace: false
  1473. alt: ''
  1474. rel: ''
  1475. link_class: ''
  1476. prefix: ''
  1477. suffix: ''
  1478. target: ''
  1479. nl2br: false
  1480. max_length: 0
  1481. word_boundary: true
  1482. ellipsis: true
  1483. more_link: false
  1484. more_link_text: ''
  1485. more_link_path: ''
  1486. strip_tags: false
  1487. trim: false
  1488. preserve_tags: ''
  1489. html: false
  1490. element_type: ''
  1491. element_class: ''
  1492. element_label_type: ''
  1493. element_label_class: ''
  1494. element_label_colon: true
  1495. element_wrapper_type: ''
  1496. element_wrapper_class: ''
  1497. element_default_classes: true
  1498. empty: ''
  1499. hide_empty: false
  1500. empty_zero: false
  1501. hide_alter_empty: true
  1502. destination: true
  1503. plugin_id: entity_operations
  1504. field_description:
  1505. id: field_description
  1506. table: node__field_description
  1507. field: field_description
  1508. relationship: none
  1509. group_type: group
  1510. admin_label: ''
  1511. label: Description
  1512. exclude: false
  1513. alter:
  1514. alter_text: false
  1515. text: ''
  1516. make_link: false
  1517. path: ''
  1518. absolute: false
  1519. external: false
  1520. replace_spaces: false
  1521. path_case: none
  1522. trim_whitespace: false
  1523. alt: ''
  1524. rel: ''
  1525. link_class: ''
  1526. prefix: ''
  1527. suffix: ''
  1528. target: ''
  1529. nl2br: false
  1530. max_length: 0
  1531. word_boundary: true
  1532. ellipsis: true
  1533. more_link: false
  1534. more_link_text: ''
  1535. more_link_path: ''
  1536. strip_tags: false
  1537. trim: false
  1538. preserve_tags: ''
  1539. html: false
  1540. element_type: ''
  1541. element_class: ''
  1542. element_label_type: ''
  1543. element_label_class: ''
  1544. element_label_colon: true
  1545. element_wrapper_type: ''
  1546. element_wrapper_class: ''
  1547. element_default_classes: true
  1548. empty: ''
  1549. hide_empty: false
  1550. empty_zero: false
  1551. hide_alter_empty: true
  1552. click_sort_column: value
  1553. type: text_default
  1554. settings: { }
  1555. group_column: value
  1556. group_columns: { }
  1557. group_rows: true
  1558. delta_limit: 0
  1559. delta_offset: 0
  1560. delta_reversed: false
  1561. delta_first_last: false
  1562. multi_type: separator
  1563. separator: ', '
  1564. field_api_classes: false
  1565. plugin_id: field
  1566. body:
  1567. id: body
  1568. table: node__body
  1569. field: body
  1570. relationship: none
  1571. group_type: group
  1572. admin_label: ''
  1573. label: Article
  1574. exclude: false
  1575. alter:
  1576. alter_text: false
  1577. text: ''
  1578. make_link: false
  1579. path: ''
  1580. absolute: false
  1581. external: false
  1582. replace_spaces: false
  1583. path_case: none
  1584. trim_whitespace: false
  1585. alt: ''
  1586. rel: ''
  1587. link_class: ''
  1588. prefix: ''
  1589. suffix: ''
  1590. target: ''
  1591. nl2br: false
  1592. max_length: 0
  1593. word_boundary: true
  1594. ellipsis: true
  1595. more_link: false
  1596. more_link_text: ''
  1597. more_link_path: ''
  1598. strip_tags: false
  1599. trim: false
  1600. preserve_tags: ''
  1601. html: false
  1602. element_type: ''
  1603. element_class: ''
  1604. element_label_type: ''
  1605. element_label_class: ''
  1606. element_label_colon: true
  1607. element_wrapper_type: ''
  1608. element_wrapper_class: ''
  1609. element_default_classes: true
  1610. empty: ''
  1611. hide_empty: false
  1612. empty_zero: false
  1613. hide_alter_empty: true
  1614. click_sort_column: value
  1615. type: text_summary_or_trimmed
  1616. settings:
  1617. trim_length: 50
  1618. group_column: value
  1619. group_columns: { }
  1620. group_rows: true
  1621. delta_limit: 0
  1622. delta_offset: 0
  1623. delta_reversed: false
  1624. delta_first_last: false
  1625. multi_type: separator
  1626. separator: ', '
  1627. field_api_classes: false
  1628. plugin_id: field
  1629. field_entrees:
  1630. id: field_entrees
  1631. table: node__field_entrees
  1632. field: field_entrees
  1633. relationship: none
  1634. group_type: group
  1635. admin_label: ''
  1636. label: Entrée(s)
  1637. exclude: false
  1638. alter:
  1639. alter_text: false
  1640. text: ''
  1641. make_link: false
  1642. path: ''
  1643. absolute: false
  1644. external: false
  1645. replace_spaces: false
  1646. path_case: none
  1647. trim_whitespace: false
  1648. alt: ''
  1649. rel: ''
  1650. link_class: ''
  1651. prefix: ''
  1652. suffix: ''
  1653. target: ''
  1654. nl2br: false
  1655. max_length: 0
  1656. word_boundary: true
  1657. ellipsis: true
  1658. more_link: false
  1659. more_link_text: ''
  1660. more_link_path: ''
  1661. strip_tags: false
  1662. trim: false
  1663. preserve_tags: ''
  1664. html: false
  1665. element_type: ''
  1666. element_class: ''
  1667. element_label_type: ''
  1668. element_label_class: ''
  1669. element_label_colon: true
  1670. element_wrapper_type: ''
  1671. element_wrapper_class: ''
  1672. element_default_classes: true
  1673. empty: ''
  1674. hide_empty: false
  1675. empty_zero: false
  1676. hide_alter_empty: true
  1677. click_sort_column: target_id
  1678. type: entity_reference_label
  1679. settings:
  1680. link: true
  1681. group_column: target_id
  1682. group_columns: { }
  1683. group_rows: true
  1684. delta_limit: 0
  1685. delta_offset: 0
  1686. delta_reversed: false
  1687. delta_first_last: false
  1688. multi_type: separator
  1689. separator: '<br/>'
  1690. field_api_classes: false
  1691. plugin_id: field
  1692. field_genres:
  1693. id: field_genres
  1694. table: node__field_genres
  1695. field: field_genres
  1696. relationship: none
  1697. group_type: group
  1698. admin_label: ''
  1699. label: Genre(s)
  1700. exclude: false
  1701. alter:
  1702. alter_text: false
  1703. text: ''
  1704. make_link: false
  1705. path: ''
  1706. absolute: false
  1707. external: false
  1708. replace_spaces: false
  1709. path_case: none
  1710. trim_whitespace: false
  1711. alt: ''
  1712. rel: ''
  1713. link_class: ''
  1714. prefix: ''
  1715. suffix: ''
  1716. target: ''
  1717. nl2br: false
  1718. max_length: 0
  1719. word_boundary: true
  1720. ellipsis: true
  1721. more_link: false
  1722. more_link_text: ''
  1723. more_link_path: ''
  1724. strip_tags: false
  1725. trim: false
  1726. preserve_tags: ''
  1727. html: false
  1728. element_type: ''
  1729. element_class: ''
  1730. element_label_type: ''
  1731. element_label_class: ''
  1732. element_label_colon: true
  1733. element_wrapper_type: ''
  1734. element_wrapper_class: ''
  1735. element_default_classes: true
  1736. empty: ''
  1737. hide_empty: false
  1738. empty_zero: false
  1739. hide_alter_empty: true
  1740. click_sort_column: target_id
  1741. type: entity_reference_label
  1742. settings:
  1743. link: true
  1744. group_column: target_id
  1745. group_columns: { }
  1746. group_rows: true
  1747. delta_limit: 0
  1748. delta_offset: 0
  1749. delta_reversed: false
  1750. delta_first_last: false
  1751. multi_type: separator
  1752. separator: '<br/>'
  1753. field_api_classes: false
  1754. plugin_id: field
  1755. field_locuteurs:
  1756. id: field_locuteurs
  1757. table: node__field_locuteurs
  1758. field: field_locuteurs
  1759. relationship: none
  1760. group_type: group
  1761. admin_label: ''
  1762. label: Locuteur(s)
  1763. exclude: false
  1764. alter:
  1765. alter_text: false
  1766. text: ''
  1767. make_link: false
  1768. path: ''
  1769. absolute: false
  1770. external: false
  1771. replace_spaces: false
  1772. path_case: none
  1773. trim_whitespace: false
  1774. alt: ''
  1775. rel: ''
  1776. link_class: ''
  1777. prefix: ''
  1778. suffix: ''
  1779. target: ''
  1780. nl2br: false
  1781. max_length: 0
  1782. word_boundary: true
  1783. ellipsis: true
  1784. more_link: false
  1785. more_link_text: ''
  1786. more_link_path: ''
  1787. strip_tags: false
  1788. trim: false
  1789. preserve_tags: ''
  1790. html: false
  1791. element_type: ''
  1792. element_class: ''
  1793. element_label_type: ''
  1794. element_label_class: ''
  1795. element_label_colon: true
  1796. element_wrapper_type: ''
  1797. element_wrapper_class: ''
  1798. element_default_classes: true
  1799. empty: ''
  1800. hide_empty: false
  1801. empty_zero: false
  1802. hide_alter_empty: true
  1803. click_sort_column: target_id
  1804. type: entity_reference_label
  1805. settings:
  1806. link: true
  1807. group_column: target_id
  1808. group_columns: { }
  1809. group_rows: true
  1810. delta_limit: 0
  1811. delta_offset: 0
  1812. delta_reversed: false
  1813. delta_first_last: false
  1814. multi_type: separator
  1815. separator: '<br/>'
  1816. field_api_classes: false
  1817. plugin_id: field
  1818. field_langues:
  1819. id: field_langues
  1820. table: node__field_langues
  1821. field: field_langues
  1822. relationship: none
  1823. group_type: group
  1824. admin_label: ''
  1825. label: Langue(s)
  1826. exclude: false
  1827. alter:
  1828. alter_text: false
  1829. text: ''
  1830. make_link: false
  1831. path: ''
  1832. absolute: false
  1833. external: false
  1834. replace_spaces: false
  1835. path_case: none
  1836. trim_whitespace: false
  1837. alt: ''
  1838. rel: ''
  1839. link_class: ''
  1840. prefix: ''
  1841. suffix: ''
  1842. target: ''
  1843. nl2br: false
  1844. max_length: 0
  1845. word_boundary: true
  1846. ellipsis: true
  1847. more_link: false
  1848. more_link_text: ''
  1849. more_link_path: ''
  1850. strip_tags: false
  1851. trim: false
  1852. preserve_tags: ''
  1853. html: false
  1854. element_type: ''
  1855. element_class: ''
  1856. element_label_type: ''
  1857. element_label_class: ''
  1858. element_label_colon: true
  1859. element_wrapper_type: ''
  1860. element_wrapper_class: ''
  1861. element_default_classes: true
  1862. empty: ''
  1863. hide_empty: false
  1864. empty_zero: false
  1865. hide_alter_empty: true
  1866. click_sort_column: target_id
  1867. type: entity_reference_label
  1868. settings:
  1869. link: true
  1870. group_column: target_id
  1871. group_columns: { }
  1872. group_rows: true
  1873. delta_limit: 0
  1874. delta_offset: 0
  1875. delta_reversed: false
  1876. delta_first_last: false
  1877. multi_type: separator
  1878. separator: '<br/>'
  1879. field_api_classes: false
  1880. plugin_id: field
  1881. field_collectionneurs:
  1882. id: field_collectionneurs
  1883. table: node__field_collectionneurs
  1884. field: field_collectionneurs
  1885. relationship: none
  1886. group_type: group
  1887. admin_label: ''
  1888. label: Collectionneur(s)
  1889. exclude: false
  1890. alter:
  1891. alter_text: false
  1892. text: ''
  1893. make_link: false
  1894. path: ''
  1895. absolute: false
  1896. external: false
  1897. replace_spaces: false
  1898. path_case: none
  1899. trim_whitespace: false
  1900. alt: ''
  1901. rel: ''
  1902. link_class: ''
  1903. prefix: ''
  1904. suffix: ''
  1905. target: ''
  1906. nl2br: false
  1907. max_length: 0
  1908. word_boundary: true
  1909. ellipsis: true
  1910. more_link: false
  1911. more_link_text: ''
  1912. more_link_path: ''
  1913. strip_tags: false
  1914. trim: false
  1915. preserve_tags: ''
  1916. html: false
  1917. element_type: ''
  1918. element_class: ''
  1919. element_label_type: ''
  1920. element_label_class: ''
  1921. element_label_colon: true
  1922. element_wrapper_type: ''
  1923. element_wrapper_class: ''
  1924. element_default_classes: true
  1925. empty: ''
  1926. hide_empty: false
  1927. empty_zero: false
  1928. hide_alter_empty: true
  1929. click_sort_column: target_id
  1930. type: entity_reference_label
  1931. settings:
  1932. link: true
  1933. group_column: target_id
  1934. group_columns: { }
  1935. group_rows: true
  1936. delta_limit: 0
  1937. delta_offset: 0
  1938. delta_reversed: false
  1939. delta_first_last: false
  1940. multi_type: separator
  1941. separator: '<br/>'
  1942. field_api_classes: false
  1943. plugin_id: field
  1944. name:
  1945. id: name
  1946. table: users_field_data
  1947. field: name
  1948. relationship: uid
  1949. label: Author
  1950. exclude: false
  1951. alter:
  1952. alter_text: false
  1953. element_class: ''
  1954. element_default_classes: true
  1955. empty: ''
  1956. hide_empty: false
  1957. empty_zero: false
  1958. hide_alter_empty: true
  1959. plugin_id: field
  1960. type: user_name
  1961. entity_type: user
  1962. entity_field: name
  1963. changed:
  1964. id: changed
  1965. table: node_field_data
  1966. field: changed
  1967. label: Updated
  1968. exclude: false
  1969. alter:
  1970. alter_text: false
  1971. element_class: ''
  1972. element_default_classes: true
  1973. empty: ''
  1974. hide_empty: false
  1975. empty_zero: false
  1976. hide_alter_empty: true
  1977. type: timestamp
  1978. settings:
  1979. date_format: short
  1980. custom_date_format: ''
  1981. timezone: ''
  1982. plugin_id: field
  1983. entity_type: node
  1984. entity_field: changed
  1985. display_plugin: page
  1986. display_title: Corpus
  1987. id: page_2
  1988. position: 1
  1989. cache_metadata:
  1990. contexts:
  1991. - 'languages:language_content'
  1992. - 'languages:language_interface'
  1993. - url
  1994. - url.query_args
  1995. - user
  1996. - 'user.node_grants:view'
  1997. - user.roles
  1998. max-age: 0
  1999. tags:
  2000. - 'config:field.storage.node.body'
  2001. - 'config:field.storage.node.field_collectionneurs'
  2002. - 'config:field.storage.node.field_description'
  2003. - 'config:field.storage.node.field_entrees'
  2004. - 'config:field.storage.node.field_genres'
  2005. - 'config:field.storage.node.field_langues'
  2006. - 'config:field.storage.node.field_locuteurs'
  2007. - 'config:field.storage.node.field_son'