-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvista_map.strongarm.inc
46 lines (42 loc) · 1.13 KB
/
vista_map.strongarm.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* @file
* vista_map.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function vista_map_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'geocoder_google_delay';
$strongarm->value = '200';
$export['geocoder_google_delay'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'leaflet_more_maps_custom_maps';
$strongarm->value = array(
1 => array(
'map-key' => 'Bing Hybrid',
'layer-keys' => array(
'bing hybrid layer' => 'bing hybrid layer',
),
'reverse-order' => 0,
),
2 => array(
'map-key' => '',
'layer-keys' => array(),
'reverse-order' => 0,
),
3 => array(
'map-key' => '',
'layer-keys' => array(),
'reverse-order' => 0,
),
);
$export['leaflet_more_maps_custom_maps'] = $strongarm;
return $export;
}