views.view.centre_de_ressources.yml 53 KB

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