views.view.projets.yml 57 KB

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