views.view.projets.yml 71 KB

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