views.view.centre_de_ressources.yml 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763
  1. uuid: 249b75ef-1b45-49b9-97d0-36af8dbad08a
  2. langcode: fr
  3. status: true
  4. dependencies:
  5. config:
  6. - field.storage.node.body
  7. - field.storage.node.field_auteurs
  8. - field.storage.node.field_edition
  9. - field.storage.node.field_image
  10. - field.storage.node.field_programme
  11. - field.storage.node.field_sous_titre
  12. - field.storage.node.field_theme
  13. - field.storage.node.field_type_de_ressource
  14. - image.style.medium
  15. - node.type.ressource
  16. - system.menu.head
  17. - taxonomy.vocabulary.collection
  18. - taxonomy.vocabulary.types_de_document
  19. - taxonomy.vocabulary.villes
  20. module:
  21. - better_exposed_filters
  22. - image
  23. - node
  24. - pagerer
  25. - taxonomy
  26. - text
  27. - user
  28. id: centre_de_ressources
  29. label: 'Centre de ressources'
  30. module: views
  31. description: ''
  32. tag: ''
  33. base_table: node_field_data
  34. base_field: nid
  35. display:
  36. default:
  37. id: default
  38. display_title: Master
  39. display_plugin: default
  40. position: 0
  41. display_options:
  42. title: 'Centre de ressources'
  43. fields:
  44. field_programme:
  45. id: field_programme
  46. table: node__field_programme
  47. field: field_programme
  48. relationship: none
  49. group_type: group
  50. admin_label: ''
  51. plugin_id: field
  52. label: ''
  53. exclude: false
  54. alter:
  55. alter_text: false
  56. text: ''
  57. make_link: false
  58. path: ''
  59. absolute: false
  60. external: false
  61. replace_spaces: false
  62. path_case: none
  63. trim_whitespace: false
  64. alt: ''
  65. rel: ''
  66. link_class: ''
  67. prefix: ''
  68. suffix: ''
  69. target: ''
  70. nl2br: false
  71. max_length: 0
  72. word_boundary: true
  73. ellipsis: true
  74. more_link: false
  75. more_link_text: ''
  76. more_link_path: ''
  77. strip_tags: false
  78. trim: false
  79. preserve_tags: ''
  80. html: false
  81. element_type: ''
  82. element_class: ''
  83. element_label_type: ''
  84. element_label_class: ''
  85. element_label_colon: false
  86. element_wrapper_type: ''
  87. element_wrapper_class: ''
  88. element_default_classes: true
  89. empty: ''
  90. hide_empty: false
  91. empty_zero: false
  92. hide_alter_empty: true
  93. click_sort_column: target_id
  94. type: entity_reference_label
  95. settings:
  96. link: false
  97. group_column: target_id
  98. group_columns: { }
  99. group_rows: true
  100. delta_limit: 0
  101. delta_offset: 0
  102. delta_reversed: false
  103. delta_first_last: false
  104. multi_type: separator
  105. separator: ', '
  106. field_api_classes: false
  107. field_type_de_ressource:
  108. id: field_type_de_ressource
  109. table: node__field_type_de_ressource
  110. field: field_type_de_ressource
  111. relationship: none
  112. group_type: group
  113. admin_label: ''
  114. plugin_id: field
  115. label: ''
  116. exclude: false
  117. alter:
  118. alter_text: false
  119. text: ''
  120. make_link: false
  121. path: ''
  122. absolute: false
  123. external: false
  124. replace_spaces: false
  125. path_case: none
  126. trim_whitespace: false
  127. alt: ''
  128. rel: ''
  129. link_class: ''
  130. prefix: ''
  131. suffix: ''
  132. target: ''
  133. nl2br: false
  134. max_length: 0
  135. word_boundary: true
  136. ellipsis: true
  137. more_link: false
  138. more_link_text: ''
  139. more_link_path: ''
  140. strip_tags: false
  141. trim: false
  142. preserve_tags: ''
  143. html: false
  144. element_type: ''
  145. element_class: ''
  146. element_label_type: ''
  147. element_label_class: ''
  148. element_label_colon: false
  149. element_wrapper_type: ''
  150. element_wrapper_class: ''
  151. element_default_classes: true
  152. empty: ''
  153. hide_empty: false
  154. empty_zero: false
  155. hide_alter_empty: true
  156. click_sort_column: target_id
  157. type: entity_reference_label
  158. settings:
  159. link: false
  160. group_column: target_id
  161. group_columns: { }
  162. group_rows: true
  163. delta_limit: 0
  164. delta_offset: 0
  165. delta_reversed: false
  166. delta_first_last: false
  167. multi_type: separator
  168. separator: ', '
  169. field_api_classes: false
  170. field_auteurs:
  171. id: field_auteurs
  172. table: node__field_auteurs
  173. field: field_auteurs
  174. relationship: none
  175. group_type: group
  176. admin_label: ''
  177. plugin_id: field
  178. label: ''
  179. exclude: false
  180. alter:
  181. alter_text: false
  182. text: ''
  183. make_link: false
  184. path: ''
  185. absolute: false
  186. external: false
  187. replace_spaces: false
  188. path_case: none
  189. trim_whitespace: false
  190. alt: ''
  191. rel: ''
  192. link_class: ''
  193. prefix: ''
  194. suffix: ''
  195. target: ''
  196. nl2br: false
  197. max_length: 0
  198. word_boundary: true
  199. ellipsis: true
  200. more_link: false
  201. more_link_text: ''
  202. more_link_path: ''
  203. strip_tags: false
  204. trim: false
  205. preserve_tags: ''
  206. html: false
  207. element_type: ''
  208. element_class: ''
  209. element_label_type: ''
  210. element_label_class: ''
  211. element_label_colon: false
  212. element_wrapper_type: ''
  213. element_wrapper_class: ''
  214. element_default_classes: true
  215. empty: ''
  216. hide_empty: false
  217. empty_zero: false
  218. hide_alter_empty: true
  219. click_sort_column: value
  220. type: text_default
  221. settings: { }
  222. group_column: value
  223. group_columns: { }
  224. group_rows: true
  225. delta_limit: 0
  226. delta_offset: 0
  227. delta_reversed: false
  228. delta_first_last: false
  229. multi_type: separator
  230. separator: ', '
  231. field_api_classes: false
  232. title:
  233. id: title
  234. table: node_field_data
  235. field: title
  236. relationship: none
  237. group_type: group
  238. admin_label: ''
  239. entity_type: node
  240. entity_field: title
  241. plugin_id: field
  242. label: ''
  243. exclude: false
  244. alter:
  245. alter_text: false
  246. make_link: false
  247. absolute: false
  248. word_boundary: false
  249. ellipsis: false
  250. strip_tags: false
  251. trim: false
  252. html: false
  253. element_type: ''
  254. element_class: ''
  255. element_label_type: ''
  256. element_label_class: ''
  257. element_label_colon: true
  258. element_wrapper_type: ''
  259. element_wrapper_class: ''
  260. element_default_classes: true
  261. empty: ''
  262. hide_empty: false
  263. empty_zero: false
  264. hide_alter_empty: true
  265. click_sort_column: value
  266. type: string
  267. settings:
  268. link_to_entity: true
  269. group_column: value
  270. group_columns: { }
  271. group_rows: true
  272. delta_limit: 0
  273. delta_offset: 0
  274. delta_reversed: false
  275. delta_first_last: false
  276. multi_type: separator
  277. separator: ', '
  278. field_api_classes: false
  279. field_sous_titre:
  280. id: field_sous_titre
  281. table: node__field_sous_titre
  282. field: field_sous_titre
  283. relationship: none
  284. group_type: group
  285. admin_label: ''
  286. plugin_id: field
  287. label: ''
  288. exclude: false
  289. alter:
  290. alter_text: false
  291. text: ''
  292. make_link: false
  293. path: ''
  294. absolute: false
  295. external: false
  296. replace_spaces: false
  297. path_case: none
  298. trim_whitespace: false
  299. alt: ''
  300. rel: ''
  301. link_class: ''
  302. prefix: ''
  303. suffix: ''
  304. target: ''
  305. nl2br: false
  306. max_length: 0
  307. word_boundary: true
  308. ellipsis: true
  309. more_link: false
  310. more_link_text: ''
  311. more_link_path: ''
  312. strip_tags: false
  313. trim: false
  314. preserve_tags: ''
  315. html: false
  316. element_type: ''
  317. element_class: ''
  318. element_label_type: ''
  319. element_label_class: ''
  320. element_label_colon: false
  321. element_wrapper_type: ''
  322. element_wrapper_class: ''
  323. element_default_classes: true
  324. empty: ''
  325. hide_empty: false
  326. empty_zero: false
  327. hide_alter_empty: true
  328. click_sort_column: value
  329. type: string
  330. settings:
  331. link_to_entity: false
  332. group_column: value
  333. group_columns: { }
  334. group_rows: true
  335. delta_limit: 0
  336. delta_offset: 0
  337. delta_reversed: false
  338. delta_first_last: false
  339. multi_type: separator
  340. separator: ', '
  341. field_api_classes: false
  342. field_edition:
  343. id: field_edition
  344. table: node__field_edition
  345. field: field_edition
  346. relationship: none
  347. group_type: group
  348. admin_label: ''
  349. plugin_id: field
  350. label: ''
  351. exclude: false
  352. alter:
  353. alter_text: false
  354. text: ''
  355. make_link: false
  356. path: ''
  357. absolute: false
  358. external: false
  359. replace_spaces: false
  360. path_case: none
  361. trim_whitespace: false
  362. alt: ''
  363. rel: ''
  364. link_class: ''
  365. prefix: ''
  366. suffix: ''
  367. target: ''
  368. nl2br: false
  369. max_length: 0
  370. word_boundary: true
  371. ellipsis: true
  372. more_link: false
  373. more_link_text: ''
  374. more_link_path: ''
  375. strip_tags: false
  376. trim: false
  377. preserve_tags: ''
  378. html: false
  379. element_type: ''
  380. element_class: ''
  381. element_label_type: ''
  382. element_label_class: ''
  383. element_label_colon: false
  384. element_wrapper_type: ''
  385. element_wrapper_class: ''
  386. element_default_classes: true
  387. empty: ''
  388. hide_empty: false
  389. empty_zero: false
  390. hide_alter_empty: true
  391. click_sort_column: value
  392. type: text_default
  393. settings: { }
  394. group_column: value
  395. group_columns: { }
  396. group_rows: true
  397. delta_limit: 0
  398. delta_offset: 0
  399. delta_reversed: false
  400. delta_first_last: false
  401. multi_type: separator
  402. separator: ', '
  403. field_api_classes: false
  404. field_image:
  405. id: field_image
  406. table: node__field_image
  407. field: field_image
  408. relationship: none
  409. group_type: group
  410. admin_label: ''
  411. plugin_id: field
  412. label: ''
  413. exclude: false
  414. alter:
  415. alter_text: false
  416. text: ''
  417. make_link: false
  418. path: ''
  419. absolute: false
  420. external: false
  421. replace_spaces: false
  422. path_case: none
  423. trim_whitespace: false
  424. alt: ''
  425. rel: ''
  426. link_class: ''
  427. prefix: ''
  428. suffix: ''
  429. target: ''
  430. nl2br: false
  431. max_length: 0
  432. word_boundary: true
  433. ellipsis: true
  434. more_link: false
  435. more_link_text: ''
  436. more_link_path: ''
  437. strip_tags: false
  438. trim: false
  439. preserve_tags: ''
  440. html: false
  441. element_type: ''
  442. element_class: ''
  443. element_label_type: ''
  444. element_label_class: ''
  445. element_label_colon: false
  446. element_wrapper_type: ''
  447. element_wrapper_class: ''
  448. element_default_classes: true
  449. empty: ''
  450. hide_empty: true
  451. empty_zero: false
  452. hide_alter_empty: true
  453. click_sort_column: target_id
  454. type: image
  455. settings:
  456. image_link: content
  457. image_style: medium
  458. image_loading:
  459. attribute: lazy
  460. group_column: ''
  461. group_columns: { }
  462. group_rows: true
  463. delta_limit: 0
  464. delta_offset: 0
  465. delta_reversed: false
  466. delta_first_last: false
  467. multi_type: separator
  468. separator: ', '
  469. field_api_classes: false
  470. field_theme:
  471. id: field_theme
  472. table: node__field_theme
  473. field: field_theme
  474. relationship: none
  475. group_type: group
  476. admin_label: ''
  477. plugin_id: field
  478. label: ''
  479. exclude: false
  480. alter:
  481. alter_text: false
  482. text: ''
  483. make_link: false
  484. path: ''
  485. absolute: false
  486. external: false
  487. replace_spaces: false
  488. path_case: none
  489. trim_whitespace: false
  490. alt: ''
  491. rel: ''
  492. link_class: ''
  493. prefix: ''
  494. suffix: ''
  495. target: ''
  496. nl2br: false
  497. max_length: 0
  498. word_boundary: true
  499. ellipsis: true
  500. more_link: false
  501. more_link_text: ''
  502. more_link_path: ''
  503. strip_tags: false
  504. trim: false
  505. preserve_tags: ''
  506. html: false
  507. element_type: ''
  508. element_class: ''
  509. element_label_type: ''
  510. element_label_class: ''
  511. element_label_colon: false
  512. element_wrapper_type: ''
  513. element_wrapper_class: ''
  514. element_default_classes: true
  515. empty: ''
  516. hide_empty: false
  517. empty_zero: false
  518. hide_alter_empty: true
  519. click_sort_column: target_id
  520. type: entity_reference_label
  521. settings:
  522. link: true
  523. group_column: target_id
  524. group_columns: { }
  525. group_rows: true
  526. delta_limit: 0
  527. delta_offset: 0
  528. delta_reversed: false
  529. delta_first_last: false
  530. multi_type: separator
  531. separator: ', '
  532. field_api_classes: false
  533. body:
  534. id: body
  535. table: node__body
  536. field: body
  537. relationship: none
  538. group_type: group
  539. admin_label: ''
  540. plugin_id: field
  541. label: ''
  542. exclude: true
  543. alter:
  544. alter_text: false
  545. text: ''
  546. make_link: false
  547. path: ''
  548. absolute: false
  549. external: false
  550. replace_spaces: false
  551. path_case: none
  552. trim_whitespace: false
  553. alt: ''
  554. rel: ''
  555. link_class: ''
  556. prefix: ''
  557. suffix: ''
  558. target: ''
  559. nl2br: false
  560. max_length: 0
  561. word_boundary: true
  562. ellipsis: true
  563. more_link: false
  564. more_link_text: ''
  565. more_link_path: ''
  566. strip_tags: false
  567. trim: false
  568. preserve_tags: ''
  569. html: false
  570. element_type: ''
  571. element_class: ''
  572. element_label_type: ''
  573. element_label_class: ''
  574. element_label_colon: false
  575. element_wrapper_type: ''
  576. element_wrapper_class: ''
  577. element_default_classes: true
  578. empty: ''
  579. hide_empty: false
  580. empty_zero: false
  581. hide_alter_empty: true
  582. click_sort_column: value
  583. type: text_default
  584. settings: { }
  585. group_column: value
  586. group_columns: { }
  587. group_rows: true
  588. delta_limit: 0
  589. delta_offset: 0
  590. delta_reversed: false
  591. delta_first_last: false
  592. multi_type: separator
  593. separator: ', '
  594. field_api_classes: false
  595. pager:
  596. type: pagerer
  597. options:
  598. offset: 0
  599. items_per_page: 25
  600. preset: default
  601. id: '0'
  602. total_pages: ''
  603. expose:
  604. items_per_page: 1
  605. items_per_page_label: 'Items per page'
  606. items_per_page_options: '5, 10, 25, 50'
  607. items_per_page_options_all: 1
  608. items_per_page_options_all_label: '- All -'
  609. offset: 0
  610. offset_label: Offset
  611. exposed_form:
  612. type: bef
  613. options:
  614. submit_button: Appliquer
  615. reset_button: true
  616. reset_button_label: Réinitialiser
  617. exposed_sorts_label: 'Sort by'
  618. expose_sort_order: true
  619. sort_asc_label: Asc
  620. sort_desc_label: Desc
  621. text_input_required: 'Sélectionnez n''importe quel filtre et cliquez sur Appliquer pour voir les résultats'
  622. text_input_required_format: wysiwyg
  623. bef:
  624. general:
  625. autosubmit: false
  626. autosubmit_exclude_textfield: false
  627. autosubmit_textfield_delay: 500
  628. autosubmit_hide: false
  629. input_required: false
  630. allow_secondary: false
  631. secondary_label: 'Options avancées'
  632. secondary_open: false
  633. pager:
  634. plugin_id: default
  635. advanced:
  636. is_secondary: false
  637. filter:
  638. combine:
  639. plugin_id: default
  640. advanced:
  641. placeholder_text: ''
  642. collapsible: false
  643. is_secondary: false
  644. options_show_only_used: false
  645. options_show_only_used_filtered: false
  646. field_programme_target_id:
  647. plugin_id: default
  648. advanced:
  649. sort_options: false
  650. rewrite:
  651. filter_rewrite_values: ''
  652. collapsible: false
  653. is_secondary: false
  654. options_show_only_used: false
  655. options_show_only_used_filtered: false
  656. field_theme_target_id:
  657. plugin_id: default
  658. advanced:
  659. sort_options: false
  660. rewrite:
  661. filter_rewrite_values: ''
  662. collapsible: false
  663. is_secondary: false
  664. options_show_only_used: false
  665. options_show_only_used_filtered: false
  666. field_ville_target_id:
  667. plugin_id: default
  668. advanced:
  669. sort_options: false
  670. rewrite:
  671. filter_rewrite_values: ''
  672. collapsible: false
  673. is_secondary: false
  674. options_show_only_used: 0
  675. options_show_only_used_filtered: 0
  676. field_type_de_ressource_target_id:
  677. plugin_id: default
  678. advanced:
  679. sort_options: false
  680. rewrite:
  681. filter_rewrite_values: ''
  682. collapsible: false
  683. is_secondary: false
  684. options_show_only_used: 0
  685. options_show_only_used_filtered: 0
  686. field_collections_target_id:
  687. plugin_id: default
  688. advanced:
  689. sort_options: false
  690. rewrite:
  691. filter_rewrite_values: ''
  692. collapsible: false
  693. is_secondary: false
  694. options_show_only_used: 0
  695. options_show_only_used_filtered: 0
  696. access:
  697. type: perm
  698. options:
  699. perm: 'access content'
  700. cache:
  701. type: tag
  702. options: { }
  703. empty: { }
  704. sorts:
  705. created:
  706. id: created
  707. table: node_field_data
  708. field: created
  709. relationship: none
  710. group_type: group
  711. admin_label: ''
  712. entity_type: node
  713. entity_field: created
  714. plugin_id: date
  715. order: DESC
  716. expose:
  717. label: ''
  718. field_identifier: created
  719. exposed: false
  720. granularity: second
  721. arguments: { }
  722. filters:
  723. status:
  724. id: status
  725. table: node_field_data
  726. field: status
  727. entity_type: node
  728. entity_field: status
  729. plugin_id: boolean
  730. value: '1'
  731. group: 1
  732. expose:
  733. operator: ''
  734. operator_limit_selection: false
  735. operator_list: { }
  736. type:
  737. id: type
  738. table: node_field_data
  739. field: type
  740. entity_type: node
  741. entity_field: type
  742. plugin_id: bundle
  743. value:
  744. ressource: ressource
  745. group: 1
  746. expose:
  747. operator_limit_selection: false
  748. operator_list: { }
  749. combine:
  750. id: combine
  751. table: views
  752. field: combine
  753. relationship: none
  754. group_type: group
  755. admin_label: ''
  756. plugin_id: combine
  757. operator: contains
  758. value: ''
  759. group: 1
  760. exposed: true
  761. expose:
  762. operator_id: combine_op
  763. label: Recherche
  764. description: ''
  765. use_operator: false
  766. operator: combine_op
  767. operator_limit_selection: false
  768. operator_list: { }
  769. identifier: combine
  770. required: false
  771. remember: false
  772. multiple: false
  773. remember_roles:
  774. authenticated: authenticated
  775. anonymous: '0'
  776. admin: '0'
  777. root: '0'
  778. user: '0'
  779. editeur: '0'
  780. placeholder: ''
  781. is_grouped: false
  782. group_info:
  783. label: ''
  784. description: ''
  785. identifier: ''
  786. optional: true
  787. widget: select
  788. multiple: false
  789. remember: false
  790. default_group: All
  791. default_group_multiple: { }
  792. group_items: { }
  793. fields:
  794. title: title
  795. field_sous_titre: field_sous_titre
  796. body: body
  797. field_programme_target_id:
  798. id: field_programme_target_id
  799. table: node__field_programme
  800. field: field_programme_target_id
  801. relationship: none
  802. group_type: group
  803. admin_label: ''
  804. plugin_id: entity_reference
  805. operator: or
  806. value: { }
  807. group: 1
  808. exposed: true
  809. expose:
  810. operator_id: field_programme_target_id_op
  811. label: Programme
  812. description: ''
  813. use_operator: false
  814. operator: field_programme_target_id_op
  815. operator_limit_selection: false
  816. operator_list: { }
  817. identifier: programme
  818. required: false
  819. remember: false
  820. multiple: false
  821. remember_roles:
  822. authenticated: authenticated
  823. anonymous: '0'
  824. admin: '0'
  825. root: '0'
  826. user: '0'
  827. editeur: '0'
  828. reduce: false
  829. is_grouped: false
  830. group_info:
  831. label: ''
  832. description: ''
  833. identifier: ''
  834. optional: true
  835. widget: select
  836. multiple: false
  837. remember: false
  838. default_group: All
  839. default_group_multiple: { }
  840. group_items: { }
  841. reduce_duplicates: false
  842. handler: 'default:node'
  843. widget: select
  844. handler_settings:
  845. target_bundles:
  846. programme: programme
  847. sort:
  848. field: _none
  849. direction: ASC
  850. auto_create: false
  851. auto_create_bundle: ''
  852. field_theme_target_id:
  853. id: field_theme_target_id
  854. table: node__field_theme
  855. field: field_theme_target_id
  856. relationship: none
  857. group_type: group
  858. admin_label: ''
  859. plugin_id: entity_reference
  860. operator: or
  861. value: { }
  862. group: 1
  863. exposed: true
  864. expose:
  865. operator_id: field_theme_target_id_op
  866. label: Thème
  867. description: ''
  868. use_operator: false
  869. operator: field_theme_target_id_op
  870. operator_limit_selection: false
  871. operator_list: { }
  872. identifier: theme
  873. required: false
  874. remember: false
  875. multiple: false
  876. remember_roles:
  877. authenticated: authenticated
  878. anonymous: '0'
  879. admin: '0'
  880. root: '0'
  881. user: '0'
  882. editeur: '0'
  883. reduce: false
  884. is_grouped: false
  885. group_info:
  886. label: ''
  887. description: ''
  888. identifier: ''
  889. optional: true
  890. widget: select
  891. multiple: false
  892. remember: false
  893. default_group: All
  894. default_group_multiple: { }
  895. group_items: { }
  896. reduce_duplicates: false
  897. handler: 'default:node'
  898. widget: select
  899. handler_settings:
  900. target_bundles:
  901. theme: theme
  902. sort:
  903. field: _none
  904. direction: ASC
  905. auto_create: false
  906. auto_create_bundle: ''
  907. field_ville_target_id:
  908. id: field_ville_target_id
  909. table: node__field_ville
  910. field: field_ville_target_id
  911. relationship: none
  912. group_type: group
  913. admin_label: ''
  914. plugin_id: taxonomy_index_tid
  915. operator: or
  916. value: { }
  917. group: 1
  918. exposed: true
  919. expose:
  920. operator_id: field_ville_target_id_op
  921. label: Ville
  922. description: ''
  923. use_operator: false
  924. operator: field_ville_target_id_op
  925. operator_limit_selection: false
  926. operator_list: { }
  927. identifier: ville
  928. required: false
  929. remember: false
  930. multiple: false
  931. remember_roles:
  932. authenticated: authenticated
  933. anonymous: '0'
  934. admin: '0'
  935. root: '0'
  936. user: '0'
  937. editeur: '0'
  938. reduce: false
  939. is_grouped: false
  940. group_info:
  941. label: 'Ville (field_ville)'
  942. description: ''
  943. identifier: field_ville_target_id
  944. optional: true
  945. widget: select
  946. multiple: false
  947. remember: false
  948. default_group: All
  949. default_group_multiple: { }
  950. group_items:
  951. 1:
  952. title: ''
  953. operator: or
  954. value: { }
  955. 2:
  956. title: ''
  957. operator: or
  958. value: { }
  959. 3:
  960. title: ''
  961. operator: or
  962. value: { }
  963. reduce_duplicates: false
  964. vid: villes
  965. type: select
  966. hierarchy: false
  967. limit: true
  968. error_message: true
  969. save_lineage: false
  970. force_deepest: false
  971. parent: 0
  972. level_labels: ''
  973. hierarchy_depth: 0
  974. required_depth: 0
  975. field_type_de_ressource_target_id:
  976. id: field_type_de_ressource_target_id
  977. table: node__field_type_de_ressource
  978. field: field_type_de_ressource_target_id
  979. relationship: none
  980. group_type: group
  981. admin_label: ''
  982. plugin_id: taxonomy_index_tid
  983. operator: or
  984. value: { }
  985. group: 1
  986. exposed: true
  987. expose:
  988. operator_id: field_type_de_ressource_target_id_op
  989. label: 'Type de ressource'
  990. description: ''
  991. use_operator: false
  992. operator: field_type_de_ressource_target_id_op
  993. operator_limit_selection: false
  994. operator_list: { }
  995. identifier: type
  996. required: false
  997. remember: false
  998. multiple: false
  999. remember_roles:
  1000. authenticated: authenticated
  1001. anonymous: '0'
  1002. admin: '0'
  1003. root: '0'
  1004. user: '0'
  1005. editeur: '0'
  1006. reduce: false
  1007. is_grouped: false
  1008. group_info:
  1009. label: ''
  1010. description: ''
  1011. identifier: ''
  1012. optional: true
  1013. widget: select
  1014. multiple: false
  1015. remember: false
  1016. default_group: All
  1017. default_group_multiple: { }
  1018. group_items: { }
  1019. reduce_duplicates: false
  1020. vid: types_de_document
  1021. type: select
  1022. hierarchy: false
  1023. limit: true
  1024. error_message: true
  1025. save_lineage: false
  1026. force_deepest: false
  1027. parent: 0
  1028. level_labels: ''
  1029. hierarchy_depth: 0
  1030. required_depth: 0
  1031. field_collections_target_id:
  1032. id: field_collections_target_id
  1033. table: node__field_collections
  1034. field: field_collections_target_id
  1035. relationship: none
  1036. group_type: group
  1037. admin_label: ''
  1038. plugin_id: taxonomy_index_tid
  1039. operator: or
  1040. value: { }
  1041. group: 1
  1042. exposed: true
  1043. expose:
  1044. operator_id: field_collections_target_id_op
  1045. label: Collections
  1046. description: ''
  1047. use_operator: false
  1048. operator: field_collections_target_id_op
  1049. operator_limit_selection: false
  1050. operator_list: { }
  1051. identifier: field_collections_target_id
  1052. required: false
  1053. remember: false
  1054. multiple: false
  1055. remember_roles:
  1056. authenticated: authenticated
  1057. anonymous: '0'
  1058. admin: '0'
  1059. root: '0'
  1060. user: '0'
  1061. editeur: '0'
  1062. reduce: false
  1063. is_grouped: false
  1064. group_info:
  1065. label: ''
  1066. description: ''
  1067. identifier: ''
  1068. optional: true
  1069. widget: select
  1070. multiple: false
  1071. remember: false
  1072. default_group: All
  1073. default_group_multiple: { }
  1074. group_items: { }
  1075. reduce_duplicates: false
  1076. vid: collection
  1077. type: select
  1078. hierarchy: false
  1079. limit: true
  1080. error_message: true
  1081. save_lineage: false
  1082. force_deepest: false
  1083. parent: 0
  1084. level_labels: ''
  1085. hierarchy_depth: 0
  1086. required_depth: 0
  1087. filter_groups:
  1088. operator: AND
  1089. groups:
  1090. 1: AND
  1091. style:
  1092. type: grid
  1093. options:
  1094. grouping: { }
  1095. columns: 3
  1096. automatic_width: true
  1097. alignment: horizontal
  1098. row_class_custom: ''
  1099. row_class_default: true
  1100. col_class_custom: ''
  1101. col_class_default: true
  1102. row:
  1103. type: fields
  1104. query:
  1105. type: views_query
  1106. options:
  1107. query_comment: ''
  1108. disable_sql_rewrite: false
  1109. distinct: false
  1110. replica: false
  1111. query_tags: { }
  1112. relationships: { }
  1113. header: { }
  1114. footer:
  1115. area_text_custom:
  1116. id: area_text_custom
  1117. table: views
  1118. field: area_text_custom
  1119. plugin_id: text_custom
  1120. display_extenders: { }
  1121. cache_metadata:
  1122. max-age: -1
  1123. contexts:
  1124. - 'languages:language_content'
  1125. - 'languages:language_interface'
  1126. - url
  1127. - url.query_args
  1128. - user
  1129. - 'user.node_grants:view'
  1130. - user.permissions
  1131. tags:
  1132. - 'config:field.storage.node.body'
  1133. - 'config:field.storage.node.field_auteurs'
  1134. - 'config:field.storage.node.field_edition'
  1135. - 'config:field.storage.node.field_image'
  1136. - 'config:field.storage.node.field_programme'
  1137. - 'config:field.storage.node.field_sous_titre'
  1138. - 'config:field.storage.node.field_theme'
  1139. - 'config:field.storage.node.field_type_de_ressource'
  1140. block_1:
  1141. id: block_1
  1142. display_title: 'Prog Ressources Bloc'
  1143. display_plugin: block
  1144. position: 2
  1145. display_options:
  1146. title: 'Ressources associées'
  1147. fields:
  1148. field_type_de_ressource:
  1149. id: field_type_de_ressource
  1150. table: node__field_type_de_ressource
  1151. field: field_type_de_ressource
  1152. relationship: none
  1153. group_type: group
  1154. admin_label: ''
  1155. plugin_id: field
  1156. label: ''
  1157. exclude: false
  1158. alter:
  1159. alter_text: false
  1160. text: ''
  1161. make_link: false
  1162. path: ''
  1163. absolute: false
  1164. external: false
  1165. replace_spaces: false
  1166. path_case: none
  1167. trim_whitespace: false
  1168. alt: ''
  1169. rel: ''
  1170. link_class: ''
  1171. prefix: ''
  1172. suffix: ''
  1173. target: ''
  1174. nl2br: false
  1175. max_length: 0
  1176. word_boundary: true
  1177. ellipsis: true
  1178. more_link: false
  1179. more_link_text: ''
  1180. more_link_path: ''
  1181. strip_tags: false
  1182. trim: false
  1183. preserve_tags: ''
  1184. html: false
  1185. element_type: ''
  1186. element_class: ''
  1187. element_label_type: ''
  1188. element_label_class: ''
  1189. element_label_colon: false
  1190. element_wrapper_type: ''
  1191. element_wrapper_class: ''
  1192. element_default_classes: true
  1193. empty: ''
  1194. hide_empty: false
  1195. empty_zero: false
  1196. hide_alter_empty: true
  1197. click_sort_column: target_id
  1198. type: entity_reference_label
  1199. settings:
  1200. link: false
  1201. group_column: target_id
  1202. group_columns: { }
  1203. group_rows: true
  1204. delta_limit: 0
  1205. delta_offset: 0
  1206. delta_reversed: false
  1207. delta_first_last: false
  1208. multi_type: separator
  1209. separator: ', '
  1210. field_api_classes: false
  1211. title:
  1212. id: title
  1213. table: node_field_data
  1214. field: title
  1215. relationship: none
  1216. group_type: group
  1217. admin_label: ''
  1218. entity_type: node
  1219. entity_field: title
  1220. plugin_id: field
  1221. label: ''
  1222. exclude: false
  1223. alter:
  1224. alter_text: false
  1225. make_link: false
  1226. absolute: false
  1227. word_boundary: false
  1228. ellipsis: false
  1229. strip_tags: false
  1230. trim: false
  1231. html: false
  1232. element_type: ''
  1233. element_class: ''
  1234. element_label_type: ''
  1235. element_label_class: ''
  1236. element_label_colon: true
  1237. element_wrapper_type: ''
  1238. element_wrapper_class: ''
  1239. element_default_classes: true
  1240. empty: ''
  1241. hide_empty: false
  1242. empty_zero: false
  1243. hide_alter_empty: true
  1244. click_sort_column: value
  1245. type: string
  1246. settings:
  1247. link_to_entity: true
  1248. group_column: value
  1249. group_columns: { }
  1250. group_rows: true
  1251. delta_limit: 0
  1252. delta_offset: 0
  1253. delta_reversed: false
  1254. delta_first_last: false
  1255. multi_type: separator
  1256. separator: ', '
  1257. field_api_classes: false
  1258. field_sous_titre:
  1259. id: field_sous_titre
  1260. table: node__field_sous_titre
  1261. field: field_sous_titre
  1262. relationship: none
  1263. group_type: group
  1264. admin_label: ''
  1265. plugin_id: field
  1266. label: ''
  1267. exclude: false
  1268. alter:
  1269. alter_text: false
  1270. text: ''
  1271. make_link: false
  1272. path: ''
  1273. absolute: false
  1274. external: false
  1275. replace_spaces: false
  1276. path_case: none
  1277. trim_whitespace: false
  1278. alt: ''
  1279. rel: ''
  1280. link_class: ''
  1281. prefix: ''
  1282. suffix: ''
  1283. target: ''
  1284. nl2br: false
  1285. max_length: 0
  1286. word_boundary: true
  1287. ellipsis: true
  1288. more_link: false
  1289. more_link_text: ''
  1290. more_link_path: ''
  1291. strip_tags: false
  1292. trim: false
  1293. preserve_tags: ''
  1294. html: false
  1295. element_type: ''
  1296. element_class: ''
  1297. element_label_type: ''
  1298. element_label_class: ''
  1299. element_label_colon: false
  1300. element_wrapper_type: ''
  1301. element_wrapper_class: ''
  1302. element_default_classes: true
  1303. empty: ''
  1304. hide_empty: false
  1305. empty_zero: false
  1306. hide_alter_empty: true
  1307. click_sort_column: value
  1308. type: string
  1309. settings:
  1310. link_to_entity: false
  1311. group_column: value
  1312. group_columns: { }
  1313. group_rows: true
  1314. delta_limit: 0
  1315. delta_offset: 0
  1316. delta_reversed: false
  1317. delta_first_last: false
  1318. multi_type: separator
  1319. separator: ', '
  1320. field_api_classes: false
  1321. body:
  1322. id: body
  1323. table: node__body
  1324. field: body
  1325. relationship: none
  1326. group_type: group
  1327. admin_label: ''
  1328. plugin_id: field
  1329. label: ''
  1330. exclude: true
  1331. alter:
  1332. alter_text: false
  1333. text: ''
  1334. make_link: false
  1335. path: ''
  1336. absolute: false
  1337. external: false
  1338. replace_spaces: false
  1339. path_case: none
  1340. trim_whitespace: false
  1341. alt: ''
  1342. rel: ''
  1343. link_class: ''
  1344. prefix: ''
  1345. suffix: ''
  1346. target: ''
  1347. nl2br: false
  1348. max_length: 0
  1349. word_boundary: true
  1350. ellipsis: true
  1351. more_link: false
  1352. more_link_text: ''
  1353. more_link_path: ''
  1354. strip_tags: false
  1355. trim: false
  1356. preserve_tags: ''
  1357. html: false
  1358. element_type: ''
  1359. element_class: ''
  1360. element_label_type: ''
  1361. element_label_class: ''
  1362. element_label_colon: false
  1363. element_wrapper_type: ''
  1364. element_wrapper_class: ''
  1365. element_default_classes: true
  1366. empty: ''
  1367. hide_empty: false
  1368. empty_zero: false
  1369. hide_alter_empty: true
  1370. click_sort_column: value
  1371. type: text_default
  1372. settings: { }
  1373. group_column: value
  1374. group_columns: { }
  1375. group_rows: true
  1376. delta_limit: 0
  1377. delta_offset: 0
  1378. delta_reversed: false
  1379. delta_first_last: false
  1380. multi_type: separator
  1381. separator: ', '
  1382. field_api_classes: false
  1383. pager:
  1384. type: none
  1385. options:
  1386. offset: 0
  1387. arguments:
  1388. field_programme_target_id:
  1389. id: field_programme_target_id
  1390. table: node__field_programme
  1391. field: field_programme_target_id
  1392. relationship: none
  1393. group_type: group
  1394. admin_label: ''
  1395. plugin_id: numeric
  1396. default_action: default
  1397. exception:
  1398. value: all
  1399. title_enable: false
  1400. title: All
  1401. title_enable: false
  1402. title: ''
  1403. default_argument_type: node
  1404. default_argument_options: { }
  1405. default_argument_skip_url: false
  1406. summary_options:
  1407. base_path: ''
  1408. count: true
  1409. override: false
  1410. items_per_page: 25
  1411. summary:
  1412. sort_order: asc
  1413. number_of_records: 0
  1414. format: default_summary
  1415. specify_validation: false
  1416. validate:
  1417. type: none
  1418. fail: 'not found'
  1419. validate_options: { }
  1420. break_phrase: false
  1421. not: false
  1422. filters:
  1423. status:
  1424. id: status
  1425. table: node_field_data
  1426. field: status
  1427. entity_type: node
  1428. entity_field: status
  1429. plugin_id: boolean
  1430. value: '1'
  1431. group: 1
  1432. expose:
  1433. operator: ''
  1434. operator_limit_selection: false
  1435. operator_list: { }
  1436. type:
  1437. id: type
  1438. table: node_field_data
  1439. field: type
  1440. entity_type: node
  1441. entity_field: type
  1442. plugin_id: bundle
  1443. value:
  1444. ressource: ressource
  1445. group: 1
  1446. expose:
  1447. operator_limit_selection: false
  1448. operator_list: { }
  1449. filter_groups:
  1450. operator: AND
  1451. groups:
  1452. 1: AND
  1453. style:
  1454. type: html_list
  1455. options:
  1456. grouping: { }
  1457. row_class: ''
  1458. default_row_class: true
  1459. type: ul
  1460. wrapper_class: item-list
  1461. class: ''
  1462. row:
  1463. type: fields
  1464. options: { }
  1465. defaults:
  1466. title: false
  1467. pager: false
  1468. style: false
  1469. row: false
  1470. fields: false
  1471. arguments: false
  1472. filters: false
  1473. filter_groups: false
  1474. display_description: ''
  1475. display_extenders:
  1476. views_ef_fieldset: { }
  1477. block_description: 'Ressource associées'
  1478. block_category: 'Prog Blocs (Views)'
  1479. allow:
  1480. items_per_page: false
  1481. offset: '0'
  1482. pager: '0'
  1483. hide_fields: '0'
  1484. sort_fields: '0'
  1485. disable_filters: '0'
  1486. configure_sorts: '0'
  1487. cache_metadata:
  1488. max-age: -1
  1489. contexts:
  1490. - 'languages:language_content'
  1491. - 'languages:language_interface'
  1492. - url
  1493. - 'user.node_grants:view'
  1494. - user.permissions
  1495. tags:
  1496. - 'config:field.storage.node.body'
  1497. - 'config:field.storage.node.field_sous_titre'
  1498. - 'config:field.storage.node.field_type_de_ressource'
  1499. block_2:
  1500. id: block_2
  1501. display_title: 'Prog Last Ressources Bloc'
  1502. display_plugin: block
  1503. position: 2
  1504. display_options:
  1505. title: 'Ressources associées'
  1506. fields:
  1507. field_type_de_ressource:
  1508. id: field_type_de_ressource
  1509. table: node__field_type_de_ressource
  1510. field: field_type_de_ressource
  1511. relationship: none
  1512. group_type: group
  1513. admin_label: ''
  1514. plugin_id: field
  1515. label: ''
  1516. exclude: false
  1517. alter:
  1518. alter_text: false
  1519. text: ''
  1520. make_link: false
  1521. path: ''
  1522. absolute: false
  1523. external: false
  1524. replace_spaces: false
  1525. path_case: none
  1526. trim_whitespace: false
  1527. alt: ''
  1528. rel: ''
  1529. link_class: ''
  1530. prefix: ''
  1531. suffix: ''
  1532. target: ''
  1533. nl2br: false
  1534. max_length: 0
  1535. word_boundary: true
  1536. ellipsis: true
  1537. more_link: false
  1538. more_link_text: ''
  1539. more_link_path: ''
  1540. strip_tags: false
  1541. trim: false
  1542. preserve_tags: ''
  1543. html: false
  1544. element_type: ''
  1545. element_class: ''
  1546. element_label_type: ''
  1547. element_label_class: ''
  1548. element_label_colon: false
  1549. element_wrapper_type: ''
  1550. element_wrapper_class: ''
  1551. element_default_classes: true
  1552. empty: ''
  1553. hide_empty: false
  1554. empty_zero: false
  1555. hide_alter_empty: true
  1556. click_sort_column: target_id
  1557. type: entity_reference_label
  1558. settings:
  1559. link: false
  1560. group_column: target_id
  1561. group_columns: { }
  1562. group_rows: true
  1563. delta_limit: 0
  1564. delta_offset: 0
  1565. delta_reversed: false
  1566. delta_first_last: false
  1567. multi_type: separator
  1568. separator: ', '
  1569. field_api_classes: false
  1570. field_auteurs:
  1571. id: field_auteurs
  1572. table: node__field_auteurs
  1573. field: field_auteurs
  1574. relationship: none
  1575. group_type: group
  1576. admin_label: ''
  1577. plugin_id: field
  1578. label: ''
  1579. exclude: false
  1580. alter:
  1581. alter_text: false
  1582. text: ''
  1583. make_link: false
  1584. path: ''
  1585. absolute: false
  1586. external: false
  1587. replace_spaces: false
  1588. path_case: none
  1589. trim_whitespace: false
  1590. alt: ''
  1591. rel: ''
  1592. link_class: ''
  1593. prefix: ''
  1594. suffix: ''
  1595. target: ''
  1596. nl2br: false
  1597. max_length: 0
  1598. word_boundary: true
  1599. ellipsis: true
  1600. more_link: false
  1601. more_link_text: ''
  1602. more_link_path: ''
  1603. strip_tags: false
  1604. trim: false
  1605. preserve_tags: ''
  1606. html: false
  1607. element_type: ''
  1608. element_class: ''
  1609. element_label_type: ''
  1610. element_label_class: ''
  1611. element_label_colon: false
  1612. element_wrapper_type: ''
  1613. element_wrapper_class: ''
  1614. element_default_classes: true
  1615. empty: ''
  1616. hide_empty: false
  1617. empty_zero: false
  1618. hide_alter_empty: true
  1619. click_sort_column: value
  1620. type: text_default
  1621. settings: { }
  1622. group_column: value
  1623. group_columns: { }
  1624. group_rows: true
  1625. delta_limit: 0
  1626. delta_offset: 0
  1627. delta_reversed: false
  1628. delta_first_last: false
  1629. multi_type: separator
  1630. separator: ', '
  1631. field_api_classes: false
  1632. title:
  1633. id: title
  1634. table: node_field_data
  1635. field: title
  1636. relationship: none
  1637. group_type: group
  1638. admin_label: ''
  1639. entity_type: node
  1640. entity_field: title
  1641. plugin_id: field
  1642. label: ''
  1643. exclude: false
  1644. alter:
  1645. alter_text: false
  1646. make_link: false
  1647. absolute: false
  1648. word_boundary: false
  1649. ellipsis: false
  1650. strip_tags: false
  1651. trim: false
  1652. html: false
  1653. element_type: ''
  1654. element_class: ''
  1655. element_label_type: ''
  1656. element_label_class: ''
  1657. element_label_colon: true
  1658. element_wrapper_type: ''
  1659. element_wrapper_class: ''
  1660. element_default_classes: true
  1661. empty: ''
  1662. hide_empty: false
  1663. empty_zero: false
  1664. hide_alter_empty: true
  1665. click_sort_column: value
  1666. type: string
  1667. settings:
  1668. link_to_entity: true
  1669. group_column: value
  1670. group_columns: { }
  1671. group_rows: true
  1672. delta_limit: 0
  1673. delta_offset: 0
  1674. delta_reversed: false
  1675. delta_first_last: false
  1676. multi_type: separator
  1677. separator: ', '
  1678. field_api_classes: false
  1679. field_sous_titre:
  1680. id: field_sous_titre
  1681. table: node__field_sous_titre
  1682. field: field_sous_titre
  1683. relationship: none
  1684. group_type: group
  1685. admin_label: ''
  1686. plugin_id: field
  1687. label: ''
  1688. exclude: false
  1689. alter:
  1690. alter_text: false
  1691. text: ''
  1692. make_link: false
  1693. path: ''
  1694. absolute: false
  1695. external: false
  1696. replace_spaces: false
  1697. path_case: none
  1698. trim_whitespace: false
  1699. alt: ''
  1700. rel: ''
  1701. link_class: ''
  1702. prefix: ''
  1703. suffix: ''
  1704. target: ''
  1705. nl2br: false
  1706. max_length: 0
  1707. word_boundary: true
  1708. ellipsis: true
  1709. more_link: false
  1710. more_link_text: ''
  1711. more_link_path: ''
  1712. strip_tags: false
  1713. trim: false
  1714. preserve_tags: ''
  1715. html: false
  1716. element_type: ''
  1717. element_class: ''
  1718. element_label_type: ''
  1719. element_label_class: ''
  1720. element_label_colon: false
  1721. element_wrapper_type: ''
  1722. element_wrapper_class: ''
  1723. element_default_classes: true
  1724. empty: ''
  1725. hide_empty: false
  1726. empty_zero: false
  1727. hide_alter_empty: true
  1728. click_sort_column: value
  1729. type: string
  1730. settings:
  1731. link_to_entity: false
  1732. group_column: value
  1733. group_columns: { }
  1734. group_rows: true
  1735. delta_limit: 0
  1736. delta_offset: 0
  1737. delta_reversed: false
  1738. delta_first_last: false
  1739. multi_type: separator
  1740. separator: ', '
  1741. field_api_classes: false
  1742. field_edition:
  1743. id: field_edition
  1744. table: node__field_edition
  1745. field: field_edition
  1746. relationship: none
  1747. group_type: group
  1748. admin_label: ''
  1749. plugin_id: field
  1750. label: ''
  1751. exclude: false
  1752. alter:
  1753. alter_text: false
  1754. text: ''
  1755. make_link: false
  1756. path: ''
  1757. absolute: false
  1758. external: false
  1759. replace_spaces: false
  1760. path_case: none
  1761. trim_whitespace: false
  1762. alt: ''
  1763. rel: ''
  1764. link_class: ''
  1765. prefix: ''
  1766. suffix: ''
  1767. target: ''
  1768. nl2br: false
  1769. max_length: 0
  1770. word_boundary: true
  1771. ellipsis: true
  1772. more_link: false
  1773. more_link_text: ''
  1774. more_link_path: ''
  1775. strip_tags: false
  1776. trim: false
  1777. preserve_tags: ''
  1778. html: false
  1779. element_type: ''
  1780. element_class: ''
  1781. element_label_type: ''
  1782. element_label_class: ''
  1783. element_label_colon: false
  1784. element_wrapper_type: ''
  1785. element_wrapper_class: ''
  1786. element_default_classes: true
  1787. empty: ''
  1788. hide_empty: false
  1789. empty_zero: false
  1790. hide_alter_empty: true
  1791. click_sort_column: value
  1792. type: text_default
  1793. settings: { }
  1794. group_column: value
  1795. group_columns: { }
  1796. group_rows: true
  1797. delta_limit: 0
  1798. delta_offset: 0
  1799. delta_reversed: false
  1800. delta_first_last: false
  1801. multi_type: separator
  1802. separator: ', '
  1803. field_api_classes: false
  1804. body:
  1805. id: body
  1806. table: node__body
  1807. field: body
  1808. relationship: none
  1809. group_type: group
  1810. admin_label: ''
  1811. plugin_id: field
  1812. label: ''
  1813. exclude: true
  1814. alter:
  1815. alter_text: false
  1816. text: ''
  1817. make_link: false
  1818. path: ''
  1819. absolute: false
  1820. external: false
  1821. replace_spaces: false
  1822. path_case: none
  1823. trim_whitespace: false
  1824. alt: ''
  1825. rel: ''
  1826. link_class: ''
  1827. prefix: ''
  1828. suffix: ''
  1829. target: ''
  1830. nl2br: false
  1831. max_length: 0
  1832. word_boundary: true
  1833. ellipsis: true
  1834. more_link: false
  1835. more_link_text: ''
  1836. more_link_path: ''
  1837. strip_tags: false
  1838. trim: false
  1839. preserve_tags: ''
  1840. html: false
  1841. element_type: ''
  1842. element_class: ''
  1843. element_label_type: ''
  1844. element_label_class: ''
  1845. element_label_colon: false
  1846. element_wrapper_type: ''
  1847. element_wrapper_class: ''
  1848. element_default_classes: true
  1849. empty: ''
  1850. hide_empty: false
  1851. empty_zero: false
  1852. hide_alter_empty: true
  1853. click_sort_column: value
  1854. type: text_default
  1855. settings: { }
  1856. group_column: value
  1857. group_columns: { }
  1858. group_rows: true
  1859. delta_limit: 0
  1860. delta_offset: 0
  1861. delta_reversed: false
  1862. delta_first_last: false
  1863. multi_type: separator
  1864. separator: ', '
  1865. field_api_classes: false
  1866. field_image:
  1867. id: field_image
  1868. table: node__field_image
  1869. field: field_image
  1870. relationship: none
  1871. group_type: group
  1872. admin_label: ''
  1873. plugin_id: field
  1874. label: ''
  1875. exclude: false
  1876. alter:
  1877. alter_text: false
  1878. text: ''
  1879. make_link: false
  1880. path: ''
  1881. absolute: false
  1882. external: false
  1883. replace_spaces: false
  1884. path_case: none
  1885. trim_whitespace: false
  1886. alt: ''
  1887. rel: ''
  1888. link_class: ''
  1889. prefix: ''
  1890. suffix: ''
  1891. target: ''
  1892. nl2br: false
  1893. max_length: 0
  1894. word_boundary: true
  1895. ellipsis: true
  1896. more_link: false
  1897. more_link_text: ''
  1898. more_link_path: ''
  1899. strip_tags: false
  1900. trim: false
  1901. preserve_tags: ''
  1902. html: false
  1903. element_type: ''
  1904. element_class: ''
  1905. element_label_type: ''
  1906. element_label_class: ''
  1907. element_label_colon: false
  1908. element_wrapper_type: ''
  1909. element_wrapper_class: ''
  1910. element_default_classes: true
  1911. empty: ''
  1912. hide_empty: false
  1913. empty_zero: false
  1914. hide_alter_empty: true
  1915. click_sort_column: target_id
  1916. type: image
  1917. settings:
  1918. image_link: ''
  1919. image_style: medium
  1920. image_loading:
  1921. attribute: lazy
  1922. group_column: ''
  1923. group_columns: { }
  1924. group_rows: true
  1925. delta_limit: 0
  1926. delta_offset: 0
  1927. delta_reversed: false
  1928. delta_first_last: false
  1929. multi_type: separator
  1930. separator: ', '
  1931. field_api_classes: false
  1932. title_1:
  1933. id: title_1
  1934. table: node_field_revision
  1935. field: title
  1936. relationship: field_programme
  1937. group_type: group
  1938. admin_label: ''
  1939. entity_type: node
  1940. entity_field: title
  1941. plugin_id: field
  1942. label: ''
  1943. exclude: false
  1944. alter:
  1945. alter_text: false
  1946. text: ''
  1947. make_link: false
  1948. path: ''
  1949. absolute: false
  1950. external: false
  1951. replace_spaces: false
  1952. path_case: none
  1953. trim_whitespace: false
  1954. alt: ''
  1955. rel: ''
  1956. link_class: ''
  1957. prefix: ''
  1958. suffix: ''
  1959. target: ''
  1960. nl2br: false
  1961. max_length: 0
  1962. word_boundary: true
  1963. ellipsis: true
  1964. more_link: false
  1965. more_link_text: ''
  1966. more_link_path: ''
  1967. strip_tags: false
  1968. trim: false
  1969. preserve_tags: ''
  1970. html: false
  1971. element_type: ''
  1972. element_class: ''
  1973. element_label_type: ''
  1974. element_label_class: ''
  1975. element_label_colon: false
  1976. element_wrapper_type: ''
  1977. element_wrapper_class: ''
  1978. element_default_classes: true
  1979. empty: ''
  1980. hide_empty: false
  1981. empty_zero: false
  1982. hide_alter_empty: true
  1983. click_sort_column: value
  1984. type: string
  1985. settings:
  1986. link_to_entity: false
  1987. group_column: value
  1988. group_columns: { }
  1989. group_rows: true
  1990. delta_limit: 0
  1991. delta_offset: 0
  1992. delta_reversed: false
  1993. delta_first_last: false
  1994. multi_type: separator
  1995. separator: ', '
  1996. field_api_classes: false
  1997. pager:
  1998. type: some
  1999. options:
  2000. offset: 0
  2001. items_per_page: 10
  2002. arguments:
  2003. field_programme_target_id:
  2004. id: field_programme_target_id
  2005. table: node__field_programme
  2006. field: field_programme_target_id
  2007. relationship: none
  2008. group_type: group
  2009. admin_label: ''
  2010. plugin_id: numeric
  2011. default_action: default
  2012. exception:
  2013. value: all
  2014. title_enable: false
  2015. title: All
  2016. title_enable: false
  2017. title: ''
  2018. default_argument_type: node
  2019. default_argument_options: { }
  2020. default_argument_skip_url: false
  2021. summary_options:
  2022. base_path: ''
  2023. count: true
  2024. override: false
  2025. items_per_page: 25
  2026. summary:
  2027. sort_order: asc
  2028. number_of_records: 0
  2029. format: default_summary
  2030. specify_validation: false
  2031. validate:
  2032. type: none
  2033. fail: 'not found'
  2034. validate_options: { }
  2035. break_phrase: false
  2036. not: false
  2037. filters:
  2038. status:
  2039. id: status
  2040. table: node_field_data
  2041. field: status
  2042. entity_type: node
  2043. entity_field: status
  2044. plugin_id: boolean
  2045. value: '1'
  2046. group: 1
  2047. expose:
  2048. operator: ''
  2049. operator_limit_selection: false
  2050. operator_list: { }
  2051. type:
  2052. id: type
  2053. table: node_field_data
  2054. field: type
  2055. entity_type: node
  2056. entity_field: type
  2057. plugin_id: bundle
  2058. value:
  2059. ressource: ressource
  2060. group: 1
  2061. expose:
  2062. operator_limit_selection: false
  2063. operator_list: { }
  2064. filter_groups:
  2065. operator: AND
  2066. groups:
  2067. 1: AND
  2068. style:
  2069. type: default
  2070. options:
  2071. grouping: { }
  2072. row_class: ''
  2073. default_row_class: true
  2074. row:
  2075. type: fields
  2076. options: { }
  2077. defaults:
  2078. title: false
  2079. pager: false
  2080. style: false
  2081. row: false
  2082. relationships: false
  2083. fields: false
  2084. arguments: false
  2085. filters: false
  2086. filter_groups: false
  2087. footer: false
  2088. relationships:
  2089. field_programme:
  2090. id: field_programme
  2091. table: node__field_programme
  2092. field: field_programme
  2093. relationship: none
  2094. group_type: group
  2095. admin_label: 'field_programme : Contenu'
  2096. plugin_id: standard
  2097. required: false
  2098. display_description: ''
  2099. footer:
  2100. area_text_custom:
  2101. id: area_text_custom
  2102. table: views
  2103. field: area_text_custom
  2104. relationship: none
  2105. group_type: group
  2106. admin_label: ''
  2107. plugin_id: text_custom
  2108. empty: false
  2109. content: '<a href="/centre-de-ressources?programme={{ raw_arguments.field_programme_target_id }}">Toutes les ressources {{ title_1 }}</a>'
  2110. tokenize: true
  2111. display_extenders:
  2112. views_ef_fieldset: { }
  2113. block_description: 'Last Ressources associées'
  2114. block_category: 'Prog Blocs (Views)'
  2115. allow:
  2116. items_per_page: false
  2117. offset: '0'
  2118. pager: '0'
  2119. hide_fields: '0'
  2120. sort_fields: '0'
  2121. disable_filters: '0'
  2122. configure_sorts: '0'
  2123. cache_metadata:
  2124. max-age: -1
  2125. contexts:
  2126. - 'languages:language_content'
  2127. - 'languages:language_interface'
  2128. - url
  2129. - 'user.node_grants:view'
  2130. - user.permissions
  2131. tags:
  2132. - 'config:field.storage.node.body'
  2133. - 'config:field.storage.node.field_auteurs'
  2134. - 'config:field.storage.node.field_edition'
  2135. - 'config:field.storage.node.field_image'
  2136. - 'config:field.storage.node.field_sous_titre'
  2137. - 'config:field.storage.node.field_type_de_ressource'
  2138. embed_1:
  2139. id: embed_1
  2140. display_title: 'Last ressources Intégré'
  2141. display_plugin: embed
  2142. position: 3
  2143. display_options:
  2144. title: 'Last ressources'
  2145. pager:
  2146. type: some
  2147. options:
  2148. offset: 0
  2149. items_per_page: 10
  2150. filters:
  2151. status:
  2152. id: status
  2153. table: node_field_data
  2154. field: status
  2155. entity_type: node
  2156. entity_field: status
  2157. plugin_id: boolean
  2158. value: '1'
  2159. group: 1
  2160. expose:
  2161. operator: ''
  2162. operator_limit_selection: false
  2163. operator_list: { }
  2164. type:
  2165. id: type
  2166. table: node_field_data
  2167. field: type
  2168. entity_type: node
  2169. entity_field: type
  2170. plugin_id: bundle
  2171. value:
  2172. ressource: ressource
  2173. group: 1
  2174. expose:
  2175. operator_limit_selection: false
  2176. operator_list: { }
  2177. filter_groups:
  2178. operator: AND
  2179. groups:
  2180. 1: AND
  2181. style:
  2182. type: default
  2183. options:
  2184. grouping: { }
  2185. row_class: ''
  2186. default_row_class: true
  2187. row:
  2188. type: fields
  2189. options: { }
  2190. defaults:
  2191. title: false
  2192. pager: false
  2193. style: false
  2194. row: false
  2195. filters: false
  2196. filter_groups: false
  2197. display_description: ''
  2198. display_extenders:
  2199. views_ef_fieldset: { }
  2200. cache_metadata:
  2201. max-age: -1
  2202. contexts:
  2203. - 'languages:language_content'
  2204. - 'languages:language_interface'
  2205. - 'user.node_grants:view'
  2206. - user.permissions
  2207. tags:
  2208. - 'config:field.storage.node.body'
  2209. - 'config:field.storage.node.field_auteurs'
  2210. - 'config:field.storage.node.field_edition'
  2211. - 'config:field.storage.node.field_image'
  2212. - 'config:field.storage.node.field_programme'
  2213. - 'config:field.storage.node.field_sous_titre'
  2214. - 'config:field.storage.node.field_theme'
  2215. - 'config:field.storage.node.field_type_de_ressource'
  2216. page_1:
  2217. id: page_1
  2218. display_title: Page
  2219. display_plugin: page
  2220. position: 1
  2221. display_options:
  2222. filters:
  2223. status:
  2224. id: status
  2225. table: node_field_data
  2226. field: status
  2227. entity_type: node
  2228. entity_field: status
  2229. plugin_id: boolean
  2230. value: '1'
  2231. group: 1
  2232. expose:
  2233. operator: ''
  2234. operator_limit_selection: false
  2235. operator_list: { }
  2236. type:
  2237. id: type
  2238. table: node_field_data
  2239. field: type
  2240. entity_type: node
  2241. entity_field: type
  2242. plugin_id: bundle
  2243. value:
  2244. ressource: ressource
  2245. group: 1
  2246. expose:
  2247. operator_limit_selection: false
  2248. operator_list: { }
  2249. combine:
  2250. id: combine
  2251. table: views
  2252. field: combine
  2253. relationship: none
  2254. group_type: group
  2255. admin_label: ''
  2256. plugin_id: combine
  2257. operator: contains
  2258. value: ''
  2259. group: 1
  2260. exposed: true
  2261. expose:
  2262. operator_id: combine_op
  2263. label: Recherche
  2264. description: ''
  2265. use_operator: false
  2266. operator: combine_op
  2267. operator_limit_selection: false
  2268. operator_list: { }
  2269. identifier: combine
  2270. required: false
  2271. remember: false
  2272. multiple: false
  2273. remember_roles:
  2274. authenticated: authenticated
  2275. anonymous: '0'
  2276. admin: '0'
  2277. root: '0'
  2278. user: '0'
  2279. editeur: '0'
  2280. placeholder: ''
  2281. is_grouped: false
  2282. group_info:
  2283. label: ''
  2284. description: ''
  2285. identifier: ''
  2286. optional: true
  2287. widget: select
  2288. multiple: false
  2289. remember: false
  2290. default_group: All
  2291. default_group_multiple: { }
  2292. group_items: { }
  2293. fields:
  2294. title: title
  2295. field_sous_titre: field_sous_titre
  2296. body: body
  2297. field_programme_target_id:
  2298. id: field_programme_target_id
  2299. table: node__field_programme
  2300. field: field_programme_target_id
  2301. relationship: none
  2302. group_type: group
  2303. admin_label: ''
  2304. plugin_id: entity_reference
  2305. operator: or
  2306. value: { }
  2307. group: 1
  2308. exposed: true
  2309. expose:
  2310. operator_id: field_programme_target_id_op
  2311. label: Programme
  2312. description: ''
  2313. use_operator: false
  2314. operator: field_programme_target_id_op
  2315. operator_limit_selection: false
  2316. operator_list: { }
  2317. identifier: programme
  2318. required: false
  2319. remember: false
  2320. multiple: false
  2321. remember_roles:
  2322. authenticated: authenticated
  2323. anonymous: '0'
  2324. admin: '0'
  2325. root: '0'
  2326. user: '0'
  2327. editeur: '0'
  2328. reduce: false
  2329. is_grouped: false
  2330. group_info:
  2331. label: ''
  2332. description: ''
  2333. identifier: ''
  2334. optional: true
  2335. widget: select
  2336. multiple: false
  2337. remember: false
  2338. default_group: All
  2339. default_group_multiple: { }
  2340. group_items: { }
  2341. reduce_duplicates: false
  2342. handler: 'default:node'
  2343. widget: select
  2344. handler_settings:
  2345. target_bundles:
  2346. programme: programme
  2347. sort:
  2348. field: _none
  2349. direction: ASC
  2350. auto_create: false
  2351. auto_create_bundle: ''
  2352. field_theme_target_id:
  2353. id: field_theme_target_id
  2354. table: node__field_theme
  2355. field: field_theme_target_id
  2356. relationship: none
  2357. group_type: group
  2358. admin_label: ''
  2359. plugin_id: entity_reference
  2360. operator: or
  2361. value: { }
  2362. group: 1
  2363. exposed: true
  2364. expose:
  2365. operator_id: field_theme_target_id_op
  2366. label: Thème
  2367. description: ''
  2368. use_operator: false
  2369. operator: field_theme_target_id_op
  2370. operator_limit_selection: false
  2371. operator_list: { }
  2372. identifier: theme
  2373. required: false
  2374. remember: false
  2375. multiple: false
  2376. remember_roles:
  2377. authenticated: authenticated
  2378. anonymous: '0'
  2379. admin: '0'
  2380. root: '0'
  2381. user: '0'
  2382. editeur: '0'
  2383. reduce: false
  2384. is_grouped: false
  2385. group_info:
  2386. label: ''
  2387. description: ''
  2388. identifier: ''
  2389. optional: true
  2390. widget: select
  2391. multiple: false
  2392. remember: false
  2393. default_group: All
  2394. default_group_multiple: { }
  2395. group_items: { }
  2396. reduce_duplicates: false
  2397. handler: 'default:node'
  2398. widget: select
  2399. handler_settings:
  2400. target_bundles:
  2401. theme: theme
  2402. sort:
  2403. field: _none
  2404. direction: ASC
  2405. auto_create: false
  2406. auto_create_bundle: ''
  2407. field_ville_target_id:
  2408. id: field_ville_target_id
  2409. table: node__field_ville
  2410. field: field_ville_target_id
  2411. relationship: none
  2412. group_type: group
  2413. admin_label: ''
  2414. plugin_id: taxonomy_index_tid
  2415. operator: or
  2416. value: { }
  2417. group: 1
  2418. exposed: true
  2419. expose:
  2420. operator_id: field_ville_target_id_op
  2421. label: Ville
  2422. description: ''
  2423. use_operator: false
  2424. operator: field_ville_target_id_op
  2425. operator_limit_selection: false
  2426. operator_list: { }
  2427. identifier: ville
  2428. required: false
  2429. remember: false
  2430. multiple: false
  2431. remember_roles:
  2432. authenticated: authenticated
  2433. anonymous: '0'
  2434. admin: '0'
  2435. root: '0'
  2436. user: '0'
  2437. editeur: '0'
  2438. reduce: false
  2439. is_grouped: false
  2440. group_info:
  2441. label: 'Ville (field_ville)'
  2442. description: ''
  2443. identifier: field_ville_target_id
  2444. optional: true
  2445. widget: select
  2446. multiple: false
  2447. remember: false
  2448. default_group: All
  2449. default_group_multiple: { }
  2450. group_items:
  2451. 1:
  2452. title: ''
  2453. operator: or
  2454. value: { }
  2455. 2:
  2456. title: ''
  2457. operator: or
  2458. value: { }
  2459. 3:
  2460. title: ''
  2461. operator: or
  2462. value: { }
  2463. reduce_duplicates: false
  2464. vid: villes
  2465. type: select
  2466. hierarchy: false
  2467. limit: true
  2468. error_message: true
  2469. save_lineage: false
  2470. force_deepest: false
  2471. parent: 0
  2472. level_labels: ''
  2473. hierarchy_depth: 0
  2474. required_depth: 0
  2475. field_type_de_ressource_target_id:
  2476. id: field_type_de_ressource_target_id
  2477. table: node__field_type_de_ressource
  2478. field: field_type_de_ressource_target_id
  2479. relationship: none
  2480. group_type: group
  2481. admin_label: ''
  2482. plugin_id: taxonomy_index_tid
  2483. operator: or
  2484. value: { }
  2485. group: 1
  2486. exposed: true
  2487. expose:
  2488. operator_id: field_type_de_ressource_target_id_op
  2489. label: 'Type de ressource'
  2490. description: ''
  2491. use_operator: false
  2492. operator: field_type_de_ressource_target_id_op
  2493. operator_limit_selection: false
  2494. operator_list: { }
  2495. identifier: type
  2496. required: false
  2497. remember: false
  2498. multiple: false
  2499. remember_roles:
  2500. authenticated: authenticated
  2501. anonymous: '0'
  2502. admin: '0'
  2503. root: '0'
  2504. user: '0'
  2505. editeur: '0'
  2506. reduce: false
  2507. is_grouped: false
  2508. group_info:
  2509. label: ''
  2510. description: ''
  2511. identifier: ''
  2512. optional: true
  2513. widget: select
  2514. multiple: false
  2515. remember: false
  2516. default_group: All
  2517. default_group_multiple: { }
  2518. group_items: { }
  2519. reduce_duplicates: false
  2520. vid: types_de_document
  2521. type: select
  2522. hierarchy: false
  2523. limit: true
  2524. error_message: true
  2525. save_lineage: false
  2526. force_deepest: false
  2527. parent: 0
  2528. level_labels: ''
  2529. hierarchy_depth: 0
  2530. required_depth: 0
  2531. field_collections_target_id:
  2532. id: field_collections_target_id
  2533. table: node__field_collections
  2534. field: field_collections_target_id
  2535. relationship: none
  2536. group_type: group
  2537. admin_label: ''
  2538. plugin_id: taxonomy_index_tid
  2539. operator: or
  2540. value: { }
  2541. group: 1
  2542. exposed: true
  2543. expose:
  2544. operator_id: field_collections_target_id_op
  2545. label: Collections
  2546. description: ''
  2547. use_operator: false
  2548. operator: field_collections_target_id_op
  2549. operator_limit_selection: false
  2550. operator_list: { }
  2551. identifier: field_collections_target_id
  2552. required: false
  2553. remember: false
  2554. multiple: false
  2555. remember_roles:
  2556. authenticated: authenticated
  2557. anonymous: '0'
  2558. admin: '0'
  2559. root: '0'
  2560. user: '0'
  2561. editeur: '0'
  2562. reduce: false
  2563. is_grouped: false
  2564. group_info:
  2565. label: ''
  2566. description: ''
  2567. identifier: ''
  2568. optional: true
  2569. widget: select
  2570. multiple: false
  2571. remember: false
  2572. default_group: All
  2573. default_group_multiple: { }
  2574. group_items: { }
  2575. reduce_duplicates: false
  2576. vid: collection
  2577. type: select
  2578. hierarchy: false
  2579. limit: true
  2580. error_message: true
  2581. save_lineage: false
  2582. force_deepest: false
  2583. parent: 0
  2584. level_labels: ''
  2585. hierarchy_depth: 0
  2586. required_depth: 0
  2587. filter_groups:
  2588. operator: AND
  2589. groups:
  2590. 1: AND
  2591. defaults:
  2592. filters: false
  2593. filter_groups: false
  2594. header: false
  2595. header:
  2596. view:
  2597. id: view
  2598. table: views
  2599. field: view
  2600. relationship: none
  2601. group_type: group
  2602. admin_label: ''
  2603. plugin_id: view
  2604. empty: true
  2605. view_to_insert: 'centre_de_ressources:embed_1'
  2606. inherit_arguments: false
  2607. display_extenders:
  2608. views_ef_fieldset:
  2609. views_ef_fieldset:
  2610. enabled: 0
  2611. options:
  2612. sort:
  2613. root:
  2614. container_type: details
  2615. title: Filtres
  2616. description: ''
  2617. open: '1'
  2618. weight: '0'
  2619. id: root
  2620. pid: ''
  2621. depth: '0'
  2622. type: container
  2623. combine:
  2624. weight: '-14'
  2625. id: combine
  2626. pid: root
  2627. depth: '1'
  2628. type: filter
  2629. field_theme_target_id:
  2630. weight: '-14'
  2631. id: field_theme_target_id
  2632. pid: root
  2633. depth: '1'
  2634. type: filter
  2635. field_ville_target_id:
  2636. weight: '-14'
  2637. id: field_ville_target_id
  2638. pid: root
  2639. depth: '1'
  2640. type: filter
  2641. field_type_de_ressource_target_id:
  2642. weight: '-14'
  2643. id: field_type_de_ressource_target_id
  2644. pid: root
  2645. depth: '1'
  2646. type: filter
  2647. field_collections_target_id:
  2648. weight: '-14'
  2649. id: field_collections_target_id
  2650. pid: root
  2651. depth: '1'
  2652. type: filter
  2653. container-2:
  2654. container_type: details
  2655. title: 'Container 2'
  2656. description: ''
  2657. weight: '-11'
  2658. open: 0
  2659. id: container-2
  2660. pid: root
  2661. depth: '1'
  2662. type: container
  2663. container-3:
  2664. container_type: details
  2665. title: 'Container 3'
  2666. description: ''
  2667. weight: '-10'
  2668. open: 0
  2669. id: container-3
  2670. pid: root
  2671. depth: '1'
  2672. type: container
  2673. container-4:
  2674. container_type: details
  2675. title: 'Container 4'
  2676. description: ''
  2677. weight: '-9'
  2678. open: 0
  2679. id: container-4
  2680. pid: root
  2681. depth: '1'
  2682. type: container
  2683. container-5:
  2684. container_type: details
  2685. title: 'Container 5'
  2686. description: ''
  2687. weight: '-8'
  2688. open: 0
  2689. id: container-5
  2690. pid: root
  2691. depth: '1'
  2692. type: container
  2693. container-6:
  2694. container_type: details
  2695. title: 'Container 6'
  2696. description: ''
  2697. weight: '-7'
  2698. open: 0
  2699. id: container-6
  2700. pid: root
  2701. depth: '1'
  2702. type: container
  2703. field_programme_target_id:
  2704. weight: '-4'
  2705. id: field_programme_target_id
  2706. pid: root
  2707. depth: '1'
  2708. type: filter
  2709. submit:
  2710. weight: '-4'
  2711. id: submit
  2712. pid: root
  2713. depth: '1'
  2714. type: buttons
  2715. container-0:
  2716. container_type: details
  2717. title: 'Container 0'
  2718. description: ''
  2719. weight: '-3'
  2720. open: 0
  2721. id: container-0
  2722. pid: root
  2723. depth: '1'
  2724. type: container
  2725. container-1:
  2726. container_type: details
  2727. title: 'Container 1'
  2728. description: ''
  2729. weight: '-2'
  2730. open: 0
  2731. id: container-1
  2732. pid: root
  2733. depth: '1'
  2734. type: container
  2735. path: centre-de-ressources
  2736. menu:
  2737. type: normal
  2738. title: 'Centre de ressources'
  2739. description: ''
  2740. weight: -46
  2741. expanded: false
  2742. menu_name: head
  2743. parent: ''
  2744. context: '0'
  2745. cache_metadata:
  2746. max-age: -1
  2747. contexts:
  2748. - 'languages:language_content'
  2749. - 'languages:language_interface'
  2750. - url
  2751. - url.query_args
  2752. - user
  2753. - 'user.node_grants:view'
  2754. - user.permissions
  2755. tags:
  2756. - 'config:field.storage.node.body'
  2757. - 'config:field.storage.node.field_auteurs'
  2758. - 'config:field.storage.node.field_edition'
  2759. - 'config:field.storage.node.field_image'
  2760. - 'config:field.storage.node.field_programme'
  2761. - 'config:field.storage.node.field_sous_titre'
  2762. - 'config:field.storage.node.field_theme'
  2763. - 'config:field.storage.node.field_type_de_ressource'