views.view.projets.yml 63 KB

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