views.view.home_blocks.yml 51 KB

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