views.view.home_blocks.yml 51 KB

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