views.view.projets.yml 55 KB

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