Index: trunk/extensions/Maps/GoogleMaps3/Maps_GoogleMaps3DispPoint.php |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | global $wgJsMimeType; |
63 | 63 | |
64 | 64 | // TODO |
65 | | - $this->output .=<<<END |
| 65 | + $this->output .=<<<EOT |
66 | 66 | <div id="$this->mapName" style="width:{$this->width}px; height:{$this->height}px"></div> |
67 | 67 | <script type="$wgJsMimeType"> /*<![CDATA[*/ |
68 | 68 | addOnloadHook( |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | ) |
78 | 78 | ); |
79 | 79 | /*]]>*/ </script> |
80 | | -END; |
| 80 | +EOT; |
81 | 81 | |
82 | 82 | } |
83 | 83 | |
Index: trunk/extensions/Maps/GoogleMaps3/Maps_GoogleMaps3DispMap.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | public function addSpecificMapHTML() { |
60 | 60 | global $wgJsMimeType; |
61 | 61 | |
62 | | - $this->output .=<<<END |
| 62 | + $this->output .=<<<EOT |
63 | 63 | <div id="$this->mapName" style="width:{$this->width}px; height:{$this->height}px"></div> |
64 | 64 | <script type="$wgJsMimeType"> /*<![CDATA[*/ |
65 | 65 | addOnloadHook( |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | ) |
75 | 75 | ); |
76 | 76 | /*]]>*/ </script> |
77 | | -END; |
| 77 | +EOT; |
78 | 78 | |
79 | 79 | } |
80 | 80 | |
Index: trunk/extensions/Maps/GoogleMaps/Maps_GoogleMapsDispMap.php |
— | — | @@ -67,8 +67,7 @@ |
68 | 68 | |
69 | 69 | $onloadFunctions = MapsGoogleMaps::addOverlayOutput($this->output, $this->mapName, $this->overlays, $this->controls); |
70 | 70 | |
71 | | - $this->output .=<<<END |
72 | | - |
| 71 | + $this->output .=<<<EOT |
73 | 72 | <div id="$this->mapName"></div> |
74 | 73 | <script type="$wgJsMimeType"> /*<![CDATA[*/ |
75 | 74 | addOnloadHook( |
— | — | @@ -86,9 +85,8 @@ |
87 | 86 | }, []) |
88 | 87 | ); |
89 | 88 | /*]]>*/ </script> |
| 89 | +EOT; |
90 | 90 | |
91 | | -END; |
92 | | - |
93 | 91 | $this->output .= $onloadFunctions; |
94 | 92 | |
95 | 93 | } |
Index: trunk/extensions/Maps/GoogleMaps/Maps_GoogleMaps.php |
— | — | @@ -270,12 +270,12 @@ |
271 | 271 | } |
272 | 272 | } |
273 | 273 | |
274 | | - $output .=<<<END |
| 274 | + $output .=<<<EOT |
275 | 275 | <script type='$wgJsMimeType'>var timer_$mapName;</script> |
276 | 276 | <div class='outer-more' id='$mapName-outer-more'><form action=''><div class='more-box' id='$mapName-more-box'> |
277 | 277 | $overlayHtml |
278 | 278 | </div></form></div> |
279 | | -END; |
| 279 | +EOT; |
280 | 280 | |
281 | 281 | return $onloadFunctions; |
282 | 282 | } |
Index: trunk/extensions/Maps/GoogleMaps/Maps_GoogleMapsDispPoint.php |
— | — | @@ -69,8 +69,7 @@ |
70 | 70 | |
71 | 71 | $onloadFunctions = MapsGoogleMaps::addOverlayOutput($this->output, $this->mapName, $this->overlays, $this->controls); |
72 | 72 | |
73 | | - $this->output .=<<<END |
74 | | - |
| 73 | + $this->output .=<<<EOT |
75 | 74 | <div id="$this->mapName"></div> |
76 | 75 | <script type="$wgJsMimeType"> /*<![CDATA[*/ |
77 | 76 | addOnloadHook( |
— | — | @@ -90,9 +89,8 @@ |
91 | 90 | ) |
92 | 91 | ); |
93 | 92 | /*]]>*/ </script> |
| 93 | +EOT; |
94 | 94 | |
95 | | -END; |
96 | | - |
97 | 95 | $this->output .= $onloadFunctions; |
98 | 96 | |
99 | 97 | } |
Index: trunk/extensions/Maps/YahooMaps/Maps_YahooMapsDispPoint.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | public function addSpecificMapHTML() { |
57 | 57 | global $wgJsMimeType; |
58 | 58 | |
59 | | - $this->output .= <<<END |
| 59 | + $this->output .= <<<EOT |
60 | 60 | <div id="$this->mapName" style="width: {$this->width}px; height: {$this->height}px;"></div> |
61 | 61 | |
62 | 62 | <script type="$wgJsMimeType">/*<![CDATA[*/ |
— | — | @@ -63,7 +63,7 @@ |
64 | 64 | initializeYahooMap('$this->mapName', $this->centre_lat, $this->centre_lon, $this->zoom, $this->type, [$this->types], [$this->controls], $this->autozoom, [$this->markerString], $this->height) |
65 | 65 | ); |
66 | 66 | /*]]>*/</script> |
67 | | -END; |
| 67 | +EOT; |
68 | 68 | } |
69 | 69 | |
70 | 70 | } |
Index: trunk/extensions/Maps/YahooMaps/Maps_YahooMapsDispMap.php |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | public function addSpecificMapHTML() { |
50 | 50 | global $wgJsMimeType; |
51 | 51 | |
52 | | - $this->output .= <<<END |
| 52 | + $this->output .= <<<EOT |
53 | 53 | <div id="$this->mapName" style="width: {$this->width}px; height: {$this->height}px;"></div> |
54 | 54 | |
55 | 55 | <script type="$wgJsMimeType">/*<![CDATA[*/ |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | initializeYahooMap('$this->mapName', $this->centre_lat, $this->centre_lon, $this->zoom, $this->type, [$this->types], [$this->controls], $this->autozoom, [], $this->height) |
58 | 58 | ); |
59 | 59 | /*]]>*/</script> |
60 | | -END; |
| 60 | +EOT; |
61 | 61 | } |
62 | 62 | |
63 | 63 | } |