@@ -184,7 +184,7 @@ |
||
184 | 184 | |
185 | 185 | /** |
186 | 186 | * Access the map editing field for the purpose of adding guide points |
187 | - * @return [LatLongField] instance of location editing field |
|
187 | + * @return FormField instance of location editing field |
|
188 | 188 | */ |
189 | 189 | public function getMapField() { |
190 | 190 | if (!isset($this->mapField)) { |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | 'MapPinIcon' => 'Image' |
19 | 19 | ); |
20 | 20 | |
21 | - static $defaults = array ( |
|
21 | + static $defaults = array( |
|
22 | 22 | 'Lat' =>0, |
23 | 23 | 'Lon' => 0, |
24 | 24 | 'Zoom' => 4, |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | // add any KML map layers |
147 | 147 | if (Object::has_extension($this->owner->ClassName, 'MapLayerExtension')) { |
148 | - foreach($this->owner->MapLayers() as $layer) { |
|
148 | + foreach ($this->owner->MapLayers() as $layer) { |
|
149 | 149 | $map->addKML($layer->KmlFile()->getAbsoluteURL()); |
150 | 150 | // we have a layer, so turn on autozoom |
151 | 151 | $autozoom = true; |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | |
156 | 156 | // add points of interest taking into account the default icon of the layer as an override |
157 | 157 | if (Object::has_extension($this->owner->ClassName, 'PointsOfInterestLayerExtension')) { |
158 | - foreach($this->owner->PointsOfInterestLayers() as $layer) { |
|
158 | + foreach ($this->owner->PointsOfInterestLayers() as $layer) { |
|
159 | 159 | $layericon = $layer->DefaultIcon(); |
160 | 160 | if ($layericon->ID === 0) { |
161 | 161 | $layericon = null; |
@@ -8,15 +8,15 @@ |
||
8 | 8 | |
9 | 9 | public static function parse_googlestreetview($arguments, $caption = null, $parser = null) { |
10 | 10 | // each of latitude, longitude and heading are required at a bare minimum |
11 | - if(!isset($arguments['latitude'])){ |
|
11 | + if (!isset($arguments['latitude'])) { |
|
12 | 12 | return ''; |
13 | 13 | } |
14 | 14 | |
15 | - if(!isset($arguments['longitude'])){ |
|
15 | + if (!isset($arguments['longitude'])) { |
|
16 | 16 | return ''; |
17 | 17 | } |
18 | 18 | |
19 | - if(!isset($arguments['heading'])){ |
|
19 | + if (!isset($arguments['heading'])) { |
|
20 | 20 | return ''; |
21 | 21 | } |
22 | 22 |
@@ -7,11 +7,11 @@ |
||
7 | 7 | |
8 | 8 | public static function parse_googlemap($arguments, $caption = null, $parser = null) { |
9 | 9 | // each of latitude and longitude are required at a bare minimum |
10 | - if(!isset($arguments['latitude'])){ |
|
10 | + if (!isset($arguments['latitude'])) { |
|
11 | 11 | return ''; |
12 | 12 | } |
13 | 13 | |
14 | - if(!isset($arguments['longitude'])){ |
|
14 | + if (!isset($arguments['longitude'])) { |
|
15 | 15 | return ''; |
16 | 16 | } |
17 | 17 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | $gmap = MapUtil::get_map($this->owner, $this->MarkerTemplateValues); |
28 | 28 | $w = $width ? $width : MapUtil::$map_width; |
29 | 29 | $h = $height ? $height : MapUtil::$map_height; |
30 | - $gmap->setSize($w,$h); |
|
30 | + $gmap->setSize($w, $h); |
|
31 | 31 | return $gmap; |
32 | 32 | } |
33 | 33 |
@@ -15,19 +15,19 @@ discard block |
||
15 | 15 | // legacy handling for old parameters: $title, $heading, ... |
16 | 16 | // instead of new handling: $name, $title, $heading, ... |
17 | 17 | $args = func_get_args(); |
18 | - if(!isset($args[1]) || is_numeric($args[1])) { |
|
18 | + if (!isset($args[1]) || is_numeric($args[1])) { |
|
19 | 19 | $title = (isset($args[0])) ? $args[0] : null; |
20 | 20 | // Use "HeaderField(title)" as the default field name for a HeaderField; |
21 | 21 | // if it's just set to title then we risk causing accidental duplicate-field creation. |
22 | 22 | |
23 | 23 | // this means i18nized fields won't be easily accessible through fieldByName() |
24 | - $name = 'MapField' . $title; |
|
24 | + $name = 'MapField'.$title; |
|
25 | 25 | $headingLevel = (isset($args[1])) ? $args[1] : null; |
26 | 26 | $allowHTML = (isset($args[2])) ? $args[2] : null; |
27 | 27 | $form = (isset($args[3])) ? $args[3] : null; |
28 | 28 | } |
29 | 29 | |
30 | - if($headingLevel) $this->headingLevel = $headingLevel; |
|
30 | + if ($headingLevel) $this->headingLevel = $headingLevel; |
|
31 | 31 | $this->allowHTML = $allowHTML; |
32 | 32 | parent::__construct($name, $title, null, $allowHTML, $form); |
33 | 33 | } |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | |
53 | 53 | Requirements::css('mappable/css/mapField.css'); |
54 | 54 | |
55 | - return '<div class="editableMap">' . $this->createTag( |
|
55 | + return '<div class="editableMap">'.$this->createTag( |
|
56 | 56 | "div", |
57 | 57 | $attributes |
58 | - ) . '</div>'; |
|
58 | + ).'</div>'; |
|
59 | 59 | } |
60 | 60 | } |
@@ -27,7 +27,9 @@ |
||
27 | 27 | $form = (isset($args[3])) ? $args[3] : null; |
28 | 28 | } |
29 | 29 | |
30 | - if($headingLevel) $this->headingLevel = $headingLevel; |
|
30 | + if($headingLevel) { |
|
31 | + $this->headingLevel = $headingLevel; |
|
32 | + } |
|
31 | 33 | $this->allowHTML = $allowHTML; |
32 | 34 | parent::__construct($name, $title, null, $allowHTML, $form); |
33 | 35 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Map field to point for pois langitude and longitude positioning |
|
4 | - */ |
|
3 | + * Map field to point for pois langitude and longitude positioning |
|
4 | + */ |
|
5 | 5 | class MapField extends DatalessField { |
6 | 6 | |
7 | 7 | /** |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $gmap = MapUtil::get_map(new ArrayList(array($this->owner)), $this->MarkerTemplateValues); |
41 | 41 | $w = $width ? $width : MapUtil::$map_width; |
42 | 42 | $h = $height ? $height : MapUtil::$map_height; |
43 | - $gmap->setSize($w,$h); |
|
43 | + $gmap->setSize($w, $h); |
|
44 | 44 | $gmap->setZoom($zoom); |
45 | 45 | $gmap->setEnableAutomaticCenterZoom(false); |
46 | 46 | if ($this->owner->MapPinEdited) { |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $urlparts['markers'] = "icon:$pin|$lat,$lng"; |
90 | 90 | } |
91 | 91 | |
92 | - $src = htmlentities($apiurl . '?' . http_build_query($urlparts)); |
|
92 | + $src = htmlentities($apiurl.'?'.http_build_query($urlparts)); |
|
93 | 93 | return '<img src="'.$src.'" width="'.$w.'" height="'.$h.'" alt="'.$this->owner->Title.'" />'; |
94 | 94 | } |
95 | 95 |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | public function testSetSize() { |
61 | 61 | $map = $this->getMap(); |
62 | - $map->setSize('432px','1234px'); |
|
62 | + $map->setSize('432px', '1234px'); |
|
63 | 63 | $html = $map->forTemplate(); |
64 | 64 | $this->assertContains('style="width:432px; height: 1234px;"', $html); |
65 | 65 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | public function testSetCenter() { |
111 | 111 | $map = $this->getMap(); |
112 | 112 | $map->setIncludeDownloadJavascript(true); |
113 | - $map->setCenter(-23.714,47.149); |
|
113 | + $map->setCenter(-23.714, 47.149); |
|
114 | 114 | $html = $map->forTemplate(); |
115 | 115 | echo $html; |
116 | 116 | $expected = "data-centre='{\"lat\":023.714,\"lng\":47.149}'"; |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | public function testSetLatLongCenter() { |
122 | 122 | $map = $this->getMap(); |
123 | 123 | $map->setIncludeDownloadJavascript(true); |
124 | - $map->setLatLongCenter(-23.714,47.149); |
|
124 | + $map->setLatLongCenter(-23.714, 47.149); |
|
125 | 125 | $html = $map->forTemplate(); |
126 | 126 | echo $html; |
127 | 127 | $expected = "data-centre='{\"lat\":023.714,\"lng\":47.149}'"; |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * |
164 | 164 | * @param string $googleMapKey the googleMapKey |
165 | 165 | * |
166 | - * @return void |
|
166 | + * @return MapAPI |
|
167 | 167 | */ |
168 | 168 | |
169 | 169 | public function setKey($googleMapKey) { |
@@ -171,6 +171,9 @@ discard block |
||
171 | 171 | return $this; |
172 | 172 | } |
173 | 173 | |
174 | + /** |
|
175 | + * @param boolean $inclusion |
|
176 | + */ |
|
174 | 177 | public function setIncludeDownloadJavascript($inclusion) { |
175 | 178 | self::$include_download_javascript = $inclusion; |
176 | 179 | return $this; |
@@ -424,7 +427,7 @@ discard block |
||
424 | 427 | * |
425 | 428 | * @param boolean $defaultHideMarker hide all the markers on the map by default |
426 | 429 | * |
427 | - * @return void |
|
430 | + * @return MapAPI |
|
428 | 431 | */ |
429 | 432 | |
430 | 433 | public function setDefaultHideMarker($defaultHideMarker) { |
@@ -508,7 +511,7 @@ discard block |
||
508 | 511 | * @param string $category marker category |
509 | 512 | * @param string $icon an icon url |
510 | 513 | * |
511 | - * @return void |
|
514 | + * @return MapAPI |
|
512 | 515 | */ |
513 | 516 | |
514 | 517 | public function addMarkerByCoords($lat, $lng, $html = '', $category = '', $icon = '') { |
@@ -532,7 +535,7 @@ discard block |
||
532 | 535 | * @param string $category marker category |
533 | 536 | * @param string $icon an icon url |
534 | 537 | * |
535 | - * @return void |
|
538 | + * @return MapAPI |
|
536 | 539 | */ |
537 | 540 | |
538 | 541 | public function addMarkerByAddress($address, $content = '', $category = '', $icon = '') { |
@@ -550,7 +553,7 @@ discard block |
||
550 | 553 | * @param string $category marker category |
551 | 554 | * @param string $icon an icon url |
552 | 555 | * |
553 | - * @return void |
|
556 | + * @return MapAPI |
|
554 | 557 | */ |
555 | 558 | |
556 | 559 | public function addArrayMarkerByCoords($coordtab, $category = '', $icon = '') { |
@@ -631,7 +634,7 @@ discard block |
||
631 | 634 | * @param string $category marker category |
632 | 635 | * @param string $icon an icon url |
633 | 636 | * |
634 | - * @return void |
|
637 | + * @return MapAPI |
|
635 | 638 | */ |
636 | 639 | |
637 | 640 | public function addArrayMarkerByAddress($coordtab, $category = '', $icon = '') { |
@@ -660,7 +663,7 @@ discard block |
||
660 | 663 | * |
661 | 664 | * @param string $url url of the kml file compatible with gmap and gearth |
662 | 665 | * |
663 | - * @return void |
|
666 | + * @return MapAPI |
|
664 | 667 | */ |
665 | 668 | |
666 | 669 | public function addKML($url) { |
@@ -814,6 +817,10 @@ discard block |
||
814 | 817 | return $result; |
815 | 818 | } |
816 | 819 | |
820 | + /** |
|
821 | + * @param string $templateName |
|
822 | + * @param ArrayData $templateVariables |
|
823 | + */ |
|
817 | 824 | function processTemplateHTML($templateName, $templateVariables = null) { |
818 | 825 | if (!$templateVariables) { |
819 | 826 | $templateVariables = new ArrayList(); |
@@ -397,10 +397,10 @@ |
||
397 | 397 | } |
398 | 398 | |
399 | 399 | /** |
400 | - * Set the center of the gmap |
|
401 | - * |
|
402 | - * @return MapAPI This same object, in order to enable chaining of methods |
|
403 | - **/ |
|
400 | + * Set the center of the gmap |
|
401 | + * |
|
402 | + * @return MapAPI This same object, in order to enable chaining of methods |
|
403 | + **/ |
|
404 | 404 | public function setLatLongCenter($center) { |
405 | 405 | $this->latLongCenter = $center; |
406 | 406 | return $this; |