views.view.projets.yml 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  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_region_value:
  653. id: field_region_value
  654. table: node__field_region
  655. field: field_region_value
  656. relationship: none
  657. group_type: group
  658. admin_label: ''
  659. plugin_id: list_field
  660. operator: or
  661. value: { }
  662. group: 1
  663. exposed: true
  664. expose:
  665. operator_id: field_region_value_op
  666. label: Région
  667. description: ''
  668. use_operator: false
  669. operator: field_region_value_op
  670. operator_limit_selection: false
  671. operator_list: { }
  672. identifier: field_region_value
  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. field_type_de_moa_target_id:
  698. id: field_type_de_moa_target_id
  699. table: node__field_type_de_moa
  700. field: field_type_de_moa_target_id
  701. relationship: none
  702. group_type: group
  703. admin_label: ''
  704. plugin_id: taxonomy_index_tid
  705. operator: or
  706. value: null
  707. group: 1
  708. exposed: true
  709. expose:
  710. operator_id: field_type_de_moa_target_id_op
  711. label: 'Type de MOA'
  712. description: ''
  713. use_operator: false
  714. operator: field_type_de_moa_target_id_op
  715. operator_limit_selection: false
  716. operator_list: { }
  717. identifier: field_type_de_moa_target_id
  718. required: false
  719. remember: false
  720. multiple: false
  721. remember_roles:
  722. authenticated: authenticated
  723. anonymous: '0'
  724. admin: '0'
  725. root: '0'
  726. user: '0'
  727. editeur: '0'
  728. reduce: false
  729. is_grouped: false
  730. group_info:
  731. label: ''
  732. description: ''
  733. identifier: ''
  734. optional: true
  735. widget: select
  736. multiple: false
  737. remember: false
  738. default_group: All
  739. default_group_multiple: { }
  740. group_items: { }
  741. reduce_duplicates: false
  742. vid: type_de_moa
  743. type: cshs
  744. hierarchy: false
  745. limit: true
  746. error_message: true
  747. save_lineage: false
  748. force_deepest: false
  749. parent: 0
  750. level_labels: ''
  751. hierarchy_depth: 0
  752. required_depth: 0
  753. field_type_de_projet_target_id:
  754. id: field_type_de_projet_target_id
  755. table: node__field_type_de_projet
  756. field: field_type_de_projet_target_id
  757. relationship: none
  758. group_type: group
  759. admin_label: ''
  760. plugin_id: taxonomy_index_tid
  761. operator: or
  762. value: null
  763. group: 1
  764. exposed: true
  765. expose:
  766. operator_id: field_type_de_projet_target_id_op
  767. label: 'Type de projet'
  768. description: ''
  769. use_operator: false
  770. operator: field_type_de_projet_target_id_op
  771. operator_limit_selection: false
  772. operator_list: { }
  773. identifier: field_type_de_projet_target_id
  774. required: false
  775. remember: false
  776. multiple: false
  777. remember_roles:
  778. authenticated: authenticated
  779. anonymous: '0'
  780. admin: '0'
  781. root: '0'
  782. user: '0'
  783. editeur: '0'
  784. reduce: false
  785. is_grouped: false
  786. group_info:
  787. label: ''
  788. description: ''
  789. identifier: ''
  790. optional: true
  791. widget: select
  792. multiple: false
  793. remember: false
  794. default_group: All
  795. default_group_multiple: { }
  796. group_items: { }
  797. reduce_duplicates: false
  798. vid: type_de_projet
  799. type: cshs
  800. hierarchy: false
  801. limit: true
  802. error_message: true
  803. save_lineage: false
  804. force_deepest: false
  805. parent: 0
  806. level_labels: ''
  807. hierarchy_depth: 0
  808. required_depth: 0
  809. field_etape_du_projet_value:
  810. id: field_etape_du_projet_value
  811. table: node__field_etape_du_projet
  812. field: field_etape_du_projet_value
  813. relationship: none
  814. group_type: group
  815. admin_label: ''
  816. plugin_id: list_field
  817. operator: or
  818. value:
  819. all: all
  820. group: 1
  821. exposed: true
  822. expose:
  823. operator_id: field_etape_du_projet_value_op
  824. label: 'Étape du projet'
  825. description: ''
  826. use_operator: false
  827. operator: field_etape_du_projet_value_op
  828. operator_limit_selection: false
  829. operator_list: { }
  830. identifier: field_etape_du_projet_value
  831. required: false
  832. remember: false
  833. multiple: false
  834. remember_roles:
  835. authenticated: authenticated
  836. anonymous: '0'
  837. admin: '0'
  838. root: '0'
  839. user: '0'
  840. editeur: '0'
  841. reduce: false
  842. is_grouped: false
  843. group_info:
  844. label: ''
  845. description: ''
  846. identifier: ''
  847. optional: true
  848. widget: select
  849. multiple: false
  850. remember: false
  851. default_group: All
  852. default_group_multiple: { }
  853. group_items: { }
  854. reduce_duplicates: false
  855. filter_groups:
  856. operator: AND
  857. groups:
  858. 1: AND
  859. style:
  860. type: default
  861. options:
  862. row_class: ''
  863. default_row_class: true
  864. uses_fields: false
  865. row:
  866. type: 'entity:node'
  867. options:
  868. view_mode: teaser
  869. defaults:
  870. style: false
  871. row: false
  872. filters: false
  873. filter_groups: false
  874. display_description: ''
  875. display_extenders:
  876. views_ef_fieldset:
  877. views_ef_fieldset:
  878. enabled: 0
  879. options:
  880. sort:
  881. root:
  882. container_type: details
  883. title: Filtres
  884. description: ''
  885. open: '1'
  886. weight: '0'
  887. id: root
  888. pid: ''
  889. depth: '0'
  890. type: container
  891. field_incube_value:
  892. weight: '-8'
  893. id: field_incube_value
  894. pid: root
  895. depth: '1'
  896. type: filter
  897. field_neuf_rehabilitation_value:
  898. weight: '-8'
  899. id: field_neuf_rehabilitation_value
  900. pid: root
  901. depth: '1'
  902. type: filter
  903. field_encours_fini_value:
  904. weight: '-8'
  905. id: field_encours_fini_value
  906. pid: root
  907. depth: '1'
  908. type: filter
  909. submit:
  910. weight: '-8'
  911. id: submit
  912. pid: root
  913. depth: '1'
  914. type: buttons
  915. container-0:
  916. container_type: details
  917. title: 'Container 0'
  918. description: ''
  919. weight: '-7'
  920. open: 0
  921. id: container-0
  922. pid: root
  923. depth: '1'
  924. type: container
  925. container-1:
  926. container_type: details
  927. title: 'Container 1'
  928. description: ''
  929. weight: '-6'
  930. open: 0
  931. id: container-1
  932. pid: root
  933. depth: '1'
  934. type: container
  935. container-2:
  936. container_type: details
  937. title: 'Container 2'
  938. description: ''
  939. weight: '-5'
  940. open: 0
  941. id: container-2
  942. pid: root
  943. depth: '1'
  944. type: container
  945. container-3:
  946. container_type: details
  947. title: 'Container 3'
  948. description: ''
  949. weight: '-4'
  950. open: 0
  951. id: container-3
  952. pid: root
  953. depth: '1'
  954. type: container
  955. block_description: 'Projets block'
  956. cache_metadata:
  957. max-age: -1
  958. contexts:
  959. - 'languages:language_content'
  960. - 'languages:language_interface'
  961. - url
  962. - user
  963. - 'user.node_grants:view'
  964. - user.permissions
  965. tags:
  966. - 'config:field.storage.node.field_geofield'
  967. - 'config:field.storage.node.field_incube'
  968. block_2:
  969. id: block_2
  970. display_title: 'Projets map'
  971. display_plugin: block
  972. position: 2
  973. display_options:
  974. fields:
  975. field_photo:
  976. id: field_photo
  977. table: node__field_photo
  978. field: field_photo
  979. relationship: none
  980. group_type: group
  981. admin_label: ''
  982. plugin_id: field
  983. label: ''
  984. exclude: true
  985. alter:
  986. alter_text: false
  987. text: ''
  988. make_link: false
  989. path: ''
  990. absolute: false
  991. external: false
  992. replace_spaces: false
  993. path_case: none
  994. trim_whitespace: false
  995. alt: ''
  996. rel: ''
  997. link_class: ''
  998. prefix: ''
  999. suffix: ''
  1000. target: ''
  1001. nl2br: false
  1002. max_length: 0
  1003. word_boundary: true
  1004. ellipsis: true
  1005. more_link: false
  1006. more_link_text: ''
  1007. more_link_path: ''
  1008. strip_tags: false
  1009. trim: false
  1010. preserve_tags: ''
  1011. html: false
  1012. element_type: ''
  1013. element_class: ''
  1014. element_label_type: ''
  1015. element_label_class: ''
  1016. element_label_colon: false
  1017. element_wrapper_type: ''
  1018. element_wrapper_class: ''
  1019. element_default_classes: true
  1020. empty: ''
  1021. hide_empty: false
  1022. empty_zero: false
  1023. hide_alter_empty: true
  1024. click_sort_column: target_id
  1025. type: image
  1026. settings:
  1027. image_link: content
  1028. image_style: map_popup
  1029. group_column: ''
  1030. group_columns: { }
  1031. group_rows: true
  1032. delta_limit: 0
  1033. delta_offset: 0
  1034. delta_reversed: false
  1035. delta_first_last: false
  1036. multi_type: separator
  1037. separator: ', '
  1038. field_api_classes: false
  1039. title:
  1040. id: title
  1041. table: node_field_data
  1042. field: title
  1043. relationship: none
  1044. group_type: group
  1045. admin_label: ''
  1046. entity_type: node
  1047. entity_field: title
  1048. plugin_id: field
  1049. label: ''
  1050. exclude: false
  1051. alter:
  1052. alter_text: true
  1053. text: "{{ field_photo }} <br>\r\n{{ title }}"
  1054. make_link: false
  1055. path: ''
  1056. absolute: false
  1057. external: false
  1058. replace_spaces: false
  1059. path_case: none
  1060. trim_whitespace: false
  1061. alt: ''
  1062. rel: ''
  1063. link_class: ''
  1064. prefix: ''
  1065. suffix: ''
  1066. target: ''
  1067. nl2br: false
  1068. max_length: 0
  1069. word_boundary: false
  1070. ellipsis: false
  1071. more_link: false
  1072. more_link_text: ''
  1073. more_link_path: ''
  1074. strip_tags: false
  1075. trim: false
  1076. preserve_tags: ''
  1077. html: false
  1078. element_type: ''
  1079. element_class: ''
  1080. element_label_type: ''
  1081. element_label_class: ''
  1082. element_label_colon: false
  1083. element_wrapper_type: ''
  1084. element_wrapper_class: ''
  1085. element_default_classes: true
  1086. empty: ''
  1087. hide_empty: false
  1088. empty_zero: false
  1089. hide_alter_empty: true
  1090. click_sort_column: value
  1091. type: string
  1092. settings:
  1093. link_to_entity: true
  1094. group_column: value
  1095. group_columns: { }
  1096. group_rows: true
  1097. delta_limit: 0
  1098. delta_offset: 0
  1099. delta_reversed: false
  1100. delta_first_last: false
  1101. multi_type: separator
  1102. separator: ', '
  1103. field_api_classes: false
  1104. field_geofield:
  1105. id: field_geofield
  1106. table: node__field_geofield
  1107. field: field_geofield
  1108. relationship: none
  1109. group_type: group
  1110. admin_label: ''
  1111. plugin_id: field
  1112. label: ''
  1113. exclude: true
  1114. alter:
  1115. alter_text: false
  1116. text: ''
  1117. make_link: false
  1118. path: ''
  1119. absolute: false
  1120. external: false
  1121. replace_spaces: false
  1122. path_case: none
  1123. trim_whitespace: false
  1124. alt: ''
  1125. rel: ''
  1126. link_class: ''
  1127. prefix: ''
  1128. suffix: ''
  1129. target: ''
  1130. nl2br: false
  1131. max_length: 0
  1132. word_boundary: true
  1133. ellipsis: true
  1134. more_link: false
  1135. more_link_text: ''
  1136. more_link_path: ''
  1137. strip_tags: false
  1138. trim: false
  1139. preserve_tags: ''
  1140. html: false
  1141. element_type: ''
  1142. element_class: ''
  1143. element_label_type: ''
  1144. element_label_class: ''
  1145. element_label_colon: false
  1146. element_wrapper_type: ''
  1147. element_wrapper_class: ''
  1148. element_default_classes: true
  1149. empty: ''
  1150. hide_empty: false
  1151. empty_zero: false
  1152. hide_alter_empty: true
  1153. click_sort_column: value
  1154. type: geofield_default
  1155. settings:
  1156. output_format: wkt
  1157. output_escape: true
  1158. group_column: value
  1159. group_columns: { }
  1160. group_rows: true
  1161. delta_limit: 0
  1162. delta_offset: 0
  1163. delta_reversed: false
  1164. delta_first_last: false
  1165. multi_type: separator
  1166. separator: ', '
  1167. field_api_classes: false
  1168. field_incube:
  1169. id: field_incube
  1170. table: node__field_incube
  1171. field: field_incube
  1172. relationship: none
  1173. group_type: group
  1174. admin_label: ''
  1175. plugin_id: field
  1176. label: ''
  1177. exclude: true
  1178. alter:
  1179. alter_text: false
  1180. text: ''
  1181. make_link: false
  1182. path: ''
  1183. absolute: false
  1184. external: false
  1185. replace_spaces: false
  1186. path_case: none
  1187. trim_whitespace: false
  1188. alt: ''
  1189. rel: ''
  1190. link_class: ''
  1191. prefix: ''
  1192. suffix: ''
  1193. target: ''
  1194. nl2br: false
  1195. max_length: 0
  1196. word_boundary: true
  1197. ellipsis: true
  1198. more_link: false
  1199. more_link_text: ''
  1200. more_link_path: ''
  1201. strip_tags: false
  1202. trim: false
  1203. preserve_tags: ''
  1204. html: false
  1205. element_type: ''
  1206. element_class: ''
  1207. element_label_type: ''
  1208. element_label_class: ''
  1209. element_label_colon: false
  1210. element_wrapper_type: ''
  1211. element_wrapper_class: ''
  1212. element_default_classes: true
  1213. empty: ''
  1214. hide_empty: false
  1215. empty_zero: false
  1216. hide_alter_empty: true
  1217. click_sort_column: value
  1218. type: boolean
  1219. settings:
  1220. format: default
  1221. format_custom_false: ''
  1222. format_custom_true: ''
  1223. group_column: value
  1224. group_columns: { }
  1225. group_rows: true
  1226. delta_limit: 0
  1227. delta_offset: 0
  1228. delta_reversed: false
  1229. delta_first_last: false
  1230. multi_type: separator
  1231. separator: ', '
  1232. field_api_classes: false
  1233. views_conditional_field:
  1234. id: views_conditional_field
  1235. table: views_conditional
  1236. field: views_conditional_field
  1237. relationship: none
  1238. group_type: group
  1239. admin_label: ''
  1240. plugin_id: views_conditional_field
  1241. label: ''
  1242. exclude: true
  1243. alter:
  1244. alter_text: false
  1245. text: ''
  1246. make_link: false
  1247. path: ''
  1248. absolute: false
  1249. external: false
  1250. replace_spaces: false
  1251. path_case: none
  1252. trim_whitespace: false
  1253. alt: ''
  1254. rel: ''
  1255. link_class: ''
  1256. prefix: ''
  1257. suffix: ''
  1258. target: ''
  1259. nl2br: false
  1260. max_length: 0
  1261. word_boundary: true
  1262. ellipsis: true
  1263. more_link: false
  1264. more_link_text: ''
  1265. more_link_path: ''
  1266. strip_tags: false
  1267. trim: false
  1268. preserve_tags: ''
  1269. html: false
  1270. element_type: ''
  1271. element_class: ''
  1272. element_label_type: ''
  1273. element_label_class: ''
  1274. element_label_colon: false
  1275. element_wrapper_type: ''
  1276. element_wrapper_class: ''
  1277. element_default_classes: true
  1278. empty: ''
  1279. hide_empty: false
  1280. empty_zero: false
  1281. hide_alter_empty: true
  1282. if: field_incube
  1283. condition: eq
  1284. equalto: Activé
  1285. then: '#e10010ff'
  1286. then_translate: 0
  1287. or: '#000191ff'
  1288. or_translate: 0
  1289. strip_tags: 0
  1290. filters:
  1291. status:
  1292. id: status
  1293. table: node_field_data
  1294. field: status
  1295. entity_type: node
  1296. entity_field: status
  1297. plugin_id: boolean
  1298. value: '1'
  1299. group: 1
  1300. expose:
  1301. operator: ''
  1302. operator_limit_selection: false
  1303. operator_list: { }
  1304. type:
  1305. id: type
  1306. table: node_field_data
  1307. field: type
  1308. entity_type: node
  1309. entity_field: type
  1310. plugin_id: bundle
  1311. value:
  1312. projet: projet
  1313. group: 1
  1314. expose:
  1315. operator_limit_selection: false
  1316. operator_list: { }
  1317. filter_groups:
  1318. operator: AND
  1319. groups:
  1320. 1: AND
  1321. style:
  1322. type: leaflet_map
  1323. options:
  1324. grouping: { }
  1325. data_source: field_geofield
  1326. entity_source: __base_table
  1327. name_field: title
  1328. description_field: title
  1329. view_mode: full
  1330. leaflet_map: stamen-toner-lite
  1331. height: '400'
  1332. height_unit: px
  1333. hide_empty_map: false
  1334. disable_wheel: false
  1335. gesture_handling: false
  1336. reset_map:
  1337. control: false
  1338. position: topright
  1339. map_position:
  1340. force: true
  1341. center:
  1342. lat: 46.897597
  1343. lon: 2.82209
  1344. zoom: 5
  1345. minZoom: 1
  1346. maxZoom: 18
  1347. zoomFiner: 0
  1348. weight: ''
  1349. icon:
  1350. iconType: circle_marker
  1351. iconUrl: ''
  1352. shadowUrl: ''
  1353. className: ''
  1354. iconSize:
  1355. x: ''
  1356. 'y': ''
  1357. iconAnchor:
  1358. x: ''
  1359. 'y': ''
  1360. shadowSize:
  1361. x: ''
  1362. 'y': ''
  1363. shadowAnchor:
  1364. x: ''
  1365. 'y': ''
  1366. popupAnchor:
  1367. x: ''
  1368. 'y': ''
  1369. html: '<div class="lmm-icon [node:field_map_marker:classes]">[node:field_map_marker:icon]</div>'
  1370. html_class: leaflet-map-divicon
  1371. circle_marker_options: '{"radius":5,"color":"{{ views_conditional_field }}","fillColor":"{{ views_conditional_field }}","fillOpacity":0.5}'
  1372. fullscreen:
  1373. control: false
  1374. options: '{"position":"topleft","pseudoFullscreen":false}'
  1375. path: '{"color":"#3388ff","opacity":"1.0","stroke":true,"weight":3,"fill":"depends","fillColor":"*","fillOpacity":"0.2","radius":"6"}'
  1376. geocoder:
  1377. control: false
  1378. settings:
  1379. position: topright
  1380. input_size: 25
  1381. providers:
  1382. mapquest:
  1383. weight: '0'
  1384. checked: 0
  1385. min_terms: 4
  1386. delay: 800
  1387. zoom: 16
  1388. popup: false
  1389. options: ''
  1390. row:
  1391. type: fields
  1392. options:
  1393. default_field_elements: true
  1394. inline: { }
  1395. separator: ''
  1396. hide_empty: false
  1397. defaults:
  1398. style: false
  1399. row: false
  1400. fields: false
  1401. filters: false
  1402. filter_groups: false
  1403. display_description: ''
  1404. display_extenders:
  1405. views_ef_fieldset: { }
  1406. block_description: 'Projet Map'
  1407. cache_metadata:
  1408. max-age: -1
  1409. contexts:
  1410. - 'languages:language_content'
  1411. - 'languages:language_interface'
  1412. - 'user.node_grants:view'
  1413. - user.permissions
  1414. tags:
  1415. - 'config:field.storage.node.field_geofield'
  1416. - 'config:field.storage.node.field_incube'
  1417. - 'config:field.storage.node.field_photo'
  1418. block_3:
  1419. id: block_3
  1420. display_title: 'Projets incubés Block'
  1421. display_plugin: block
  1422. position: 1
  1423. display_options:
  1424. filters:
  1425. status:
  1426. id: status
  1427. table: node_field_data
  1428. field: status
  1429. entity_type: node
  1430. entity_field: status
  1431. plugin_id: boolean
  1432. value: '1'
  1433. group: 1
  1434. expose:
  1435. operator: ''
  1436. operator_limit_selection: false
  1437. operator_list: { }
  1438. type:
  1439. id: type
  1440. table: node_field_data
  1441. field: type
  1442. entity_type: node
  1443. entity_field: type
  1444. plugin_id: bundle
  1445. value:
  1446. projet: projet
  1447. group: 1
  1448. expose:
  1449. operator_limit_selection: false
  1450. operator_list: { }
  1451. field_incube_value:
  1452. id: field_incube_value
  1453. table: node__field_incube
  1454. field: field_incube_value
  1455. relationship: none
  1456. group_type: group
  1457. admin_label: ''
  1458. plugin_id: boolean
  1459. operator: '='
  1460. value: '1'
  1461. group: 1
  1462. exposed: false
  1463. expose:
  1464. operator_id: ''
  1465. label: 'Projets Incubés'
  1466. description: ''
  1467. use_operator: false
  1468. operator: field_incube_value_op
  1469. operator_limit_selection: false
  1470. operator_list: { }
  1471. identifier: field_incube_value
  1472. required: false
  1473. remember: false
  1474. multiple: false
  1475. remember_roles:
  1476. authenticated: authenticated
  1477. anonymous: '0'
  1478. admin: '0'
  1479. root: '0'
  1480. user: '0'
  1481. editeur: '0'
  1482. is_grouped: false
  1483. group_info:
  1484. label: ''
  1485. description: ''
  1486. identifier: ''
  1487. optional: true
  1488. widget: select
  1489. multiple: false
  1490. remember: false
  1491. default_group: All
  1492. default_group_multiple: { }
  1493. group_items: { }
  1494. field_neuf_rehabilitation_value:
  1495. id: field_neuf_rehabilitation_value
  1496. table: node__field_neuf_rehabilitation
  1497. field: field_neuf_rehabilitation_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_neuf_rehabilitation_value_op
  1508. label: Neuf/Réhabilitation
  1509. description: ''
  1510. use_operator: false
  1511. operator: field_neuf_rehabilitation_value_op
  1512. operator_limit_selection: false
  1513. operator_list: { }
  1514. identifier: field_neuf_rehabilitation_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. field_encours_fini_value:
  1540. id: field_encours_fini_value
  1541. table: node__field_encours_fini
  1542. field: field_encours_fini_value
  1543. relationship: none
  1544. group_type: group
  1545. admin_label: ''
  1546. plugin_id: list_field
  1547. operator: or
  1548. value: { }
  1549. group: 1
  1550. exposed: true
  1551. expose:
  1552. operator_id: field_encours_fini_value_op
  1553. label: Encours/Fini
  1554. description: ''
  1555. use_operator: false
  1556. operator: field_encours_fini_value_op
  1557. operator_limit_selection: false
  1558. operator_list: { }
  1559. identifier: field_encours_fini_value
  1560. required: false
  1561. remember: false
  1562. multiple: false
  1563. remember_roles:
  1564. authenticated: authenticated
  1565. anonymous: '0'
  1566. admin: '0'
  1567. root: '0'
  1568. user: '0'
  1569. editeur: '0'
  1570. reduce: false
  1571. is_grouped: false
  1572. group_info:
  1573. label: ''
  1574. description: ''
  1575. identifier: ''
  1576. optional: true
  1577. widget: select
  1578. multiple: false
  1579. remember: false
  1580. default_group: All
  1581. default_group_multiple: { }
  1582. group_items: { }
  1583. reduce_duplicates: false
  1584. title:
  1585. id: title
  1586. table: node_field_data
  1587. field: title
  1588. relationship: none
  1589. group_type: group
  1590. admin_label: ''
  1591. entity_type: node
  1592. entity_field: title
  1593. plugin_id: string
  1594. operator: contains
  1595. value: ''
  1596. group: 1
  1597. exposed: true
  1598. expose:
  1599. operator_id: title_op
  1600. label: Titre
  1601. description: ''
  1602. use_operator: false
  1603. operator: title_op
  1604. operator_limit_selection: false
  1605. operator_list: { }
  1606. identifier: title
  1607. required: false
  1608. remember: false
  1609. multiple: false
  1610. remember_roles:
  1611. authenticated: authenticated
  1612. anonymous: '0'
  1613. admin: '0'
  1614. root: '0'
  1615. user: '0'
  1616. editeur: '0'
  1617. placeholder: ''
  1618. is_grouped: false
  1619. group_info:
  1620. label: ''
  1621. description: ''
  1622. identifier: ''
  1623. optional: true
  1624. widget: select
  1625. multiple: false
  1626. remember: false
  1627. default_group: All
  1628. default_group_multiple: { }
  1629. group_items: { }
  1630. filter_groups:
  1631. operator: AND
  1632. groups:
  1633. 1: AND
  1634. style:
  1635. type: default
  1636. options:
  1637. row_class: ''
  1638. default_row_class: true
  1639. uses_fields: false
  1640. row:
  1641. type: 'entity:node'
  1642. options:
  1643. view_mode: teaser
  1644. defaults:
  1645. style: false
  1646. row: false
  1647. filters: false
  1648. filter_groups: false
  1649. display_description: ''
  1650. display_extenders:
  1651. views_ef_fieldset:
  1652. views_ef_fieldset:
  1653. enabled: 0
  1654. options:
  1655. sort:
  1656. root:
  1657. container_type: details
  1658. title: Filtres
  1659. description: ''
  1660. open: '1'
  1661. weight: '0'
  1662. id: root
  1663. pid: ''
  1664. depth: '0'
  1665. type: container
  1666. title:
  1667. weight: '-10'
  1668. id: title
  1669. pid: root
  1670. depth: '1'
  1671. type: filter
  1672. field_incube_value:
  1673. weight: '-8'
  1674. id: field_incube_value
  1675. pid: root
  1676. depth: '1'
  1677. type: filter
  1678. field_neuf_rehabilitation_value:
  1679. weight: '-8'
  1680. id: field_neuf_rehabilitation_value
  1681. pid: root
  1682. depth: '1'
  1683. type: filter
  1684. field_encours_fini_value:
  1685. weight: '-8'
  1686. id: field_encours_fini_value
  1687. pid: root
  1688. depth: '1'
  1689. type: filter
  1690. submit:
  1691. weight: '-8'
  1692. id: submit
  1693. pid: root
  1694. depth: '1'
  1695. type: buttons
  1696. container-0:
  1697. container_type: details
  1698. title: 'Container 0'
  1699. description: ''
  1700. weight: '-7'
  1701. open: 0
  1702. id: container-0
  1703. pid: root
  1704. depth: '1'
  1705. type: container
  1706. container-1:
  1707. container_type: details
  1708. title: 'Container 1'
  1709. description: ''
  1710. weight: '-6'
  1711. open: 0
  1712. id: container-1
  1713. pid: root
  1714. depth: '1'
  1715. type: container
  1716. container-4:
  1717. container_type: details
  1718. title: 'Container 4'
  1719. description: ''
  1720. weight: '-5'
  1721. open: 0
  1722. id: container-4
  1723. pid: root
  1724. depth: '1'
  1725. type: container
  1726. container-2:
  1727. container_type: details
  1728. title: 'Container 2'
  1729. description: ''
  1730. weight: '-5'
  1731. open: 0
  1732. id: container-2
  1733. pid: root
  1734. depth: '1'
  1735. type: container
  1736. container-3:
  1737. container_type: details
  1738. title: 'Container 3'
  1739. description: ''
  1740. weight: '-4'
  1741. open: 0
  1742. id: container-3
  1743. pid: root
  1744. depth: '1'
  1745. type: container
  1746. block_description: 'Projets incubés block'
  1747. cache_metadata:
  1748. max-age: -1
  1749. contexts:
  1750. - 'languages:language_content'
  1751. - 'languages:language_interface'
  1752. - url
  1753. - 'user.node_grants:view'
  1754. - user.permissions
  1755. tags:
  1756. - 'config:field.storage.node.field_geofield'
  1757. - 'config:field.storage.node.field_incube'
  1758. block_4:
  1759. id: block_4
  1760. display_title: 'Projets Home Block'
  1761. display_plugin: block
  1762. position: 1
  1763. display_options:
  1764. title: 'Zoom sur les projets'
  1765. filters:
  1766. status:
  1767. id: status
  1768. table: node_field_data
  1769. field: status
  1770. entity_type: node
  1771. entity_field: status
  1772. plugin_id: boolean
  1773. value: '1'
  1774. group: 1
  1775. expose:
  1776. operator: ''
  1777. operator_limit_selection: false
  1778. operator_list: { }
  1779. type:
  1780. id: type
  1781. table: node_field_data
  1782. field: type
  1783. entity_type: node
  1784. entity_field: type
  1785. plugin_id: bundle
  1786. value:
  1787. projet: projet
  1788. group: 1
  1789. expose:
  1790. operator_limit_selection: false
  1791. operator_list: { }
  1792. title:
  1793. id: title
  1794. table: node_field_data
  1795. field: title
  1796. relationship: none
  1797. group_type: group
  1798. admin_label: ''
  1799. entity_type: node
  1800. entity_field: title
  1801. plugin_id: string
  1802. operator: contains
  1803. value: ''
  1804. group: 1
  1805. exposed: false
  1806. expose:
  1807. operator_id: title_op
  1808. label: Titre
  1809. description: ''
  1810. use_operator: false
  1811. operator: title_op
  1812. operator_limit_selection: false
  1813. operator_list: { }
  1814. identifier: title
  1815. required: false
  1816. remember: false
  1817. multiple: false
  1818. remember_roles:
  1819. authenticated: authenticated
  1820. anonymous: '0'
  1821. admin: '0'
  1822. root: '0'
  1823. user: '0'
  1824. editeur: '0'
  1825. placeholder: ''
  1826. is_grouped: false
  1827. group_info:
  1828. label: ''
  1829. description: ''
  1830. identifier: ''
  1831. optional: true
  1832. widget: select
  1833. multiple: false
  1834. remember: false
  1835. default_group: All
  1836. default_group_multiple: { }
  1837. group_items: { }
  1838. promote:
  1839. id: promote
  1840. table: node_field_data
  1841. field: promote
  1842. relationship: none
  1843. group_type: group
  1844. admin_label: ''
  1845. entity_type: node
  1846. entity_field: promote
  1847. plugin_id: boolean
  1848. operator: '='
  1849. value: '1'
  1850. group: 1
  1851. exposed: false
  1852. expose:
  1853. operator_id: ''
  1854. label: ''
  1855. description: ''
  1856. use_operator: false
  1857. operator: ''
  1858. operator_limit_selection: false
  1859. operator_list: { }
  1860. identifier: ''
  1861. required: false
  1862. remember: false
  1863. multiple: false
  1864. remember_roles:
  1865. authenticated: authenticated
  1866. is_grouped: false
  1867. group_info:
  1868. label: ''
  1869. description: ''
  1870. identifier: ''
  1871. optional: true
  1872. widget: select
  1873. multiple: false
  1874. remember: false
  1875. default_group: All
  1876. default_group_multiple: { }
  1877. group_items: { }
  1878. filter_groups:
  1879. operator: AND
  1880. groups:
  1881. 1: AND
  1882. style:
  1883. type: default
  1884. options:
  1885. row_class: ''
  1886. default_row_class: true
  1887. uses_fields: false
  1888. row:
  1889. type: 'entity:node'
  1890. options:
  1891. view_mode: teaser
  1892. defaults:
  1893. title: false
  1894. style: false
  1895. row: false
  1896. filters: false
  1897. filter_groups: false
  1898. display_description: ''
  1899. display_extenders:
  1900. views_ef_fieldset:
  1901. views_ef_fieldset:
  1902. enabled: 0
  1903. options:
  1904. sort:
  1905. root:
  1906. container_type: details
  1907. title: Filtres
  1908. description: ''
  1909. open: '1'
  1910. weight: '0'
  1911. id: root
  1912. pid: ''
  1913. depth: '0'
  1914. type: container
  1915. field_incube_value:
  1916. weight: '-8'
  1917. id: field_incube_value
  1918. pid: root
  1919. depth: '1'
  1920. type: filter
  1921. field_neuf_rehabilitation_value:
  1922. weight: '-8'
  1923. id: field_neuf_rehabilitation_value
  1924. pid: root
  1925. depth: '1'
  1926. type: filter
  1927. field_encours_fini_value:
  1928. weight: '-8'
  1929. id: field_encours_fini_value
  1930. pid: root
  1931. depth: '1'
  1932. type: filter
  1933. submit:
  1934. weight: '-8'
  1935. id: submit
  1936. pid: root
  1937. depth: '1'
  1938. type: buttons
  1939. container-0:
  1940. container_type: details
  1941. title: 'Container 0'
  1942. description: ''
  1943. weight: '-7'
  1944. open: 0
  1945. id: container-0
  1946. pid: root
  1947. depth: '1'
  1948. type: container
  1949. container-1:
  1950. container_type: details
  1951. title: 'Container 1'
  1952. description: ''
  1953. weight: '-6'
  1954. open: 0
  1955. id: container-1
  1956. pid: root
  1957. depth: '1'
  1958. type: container
  1959. container-2:
  1960. container_type: details
  1961. title: 'Container 2'
  1962. description: ''
  1963. weight: '-5'
  1964. open: 0
  1965. id: container-2
  1966. pid: root
  1967. depth: '1'
  1968. type: container
  1969. container-3:
  1970. container_type: details
  1971. title: 'Container 3'
  1972. description: ''
  1973. weight: '-4'
  1974. open: 0
  1975. id: container-3
  1976. pid: root
  1977. depth: '1'
  1978. type: container
  1979. block_description: 'Projets home block'
  1980. cache_metadata:
  1981. max-age: -1
  1982. contexts:
  1983. - 'languages:language_content'
  1984. - 'languages:language_interface'
  1985. - 'user.node_grants:view'
  1986. - user.permissions
  1987. tags:
  1988. - 'config:field.storage.node.field_geofield'
  1989. - 'config:field.storage.node.field_incube'