Index: trunk/extensions/Maps/Services/GoogleMaps3/GoogleMaps3.php |
— | — | @@ -22,6 +22,14 @@ |
23 | 23 | |
24 | 24 | $wgHooks['MappingServiceLoad'][] = 'efMapsInitGoogleMaps3'; |
25 | 25 | |
| 26 | +/** |
| 27 | + * Initialization function for the Google Maps v3 service. |
| 28 | + * |
| 29 | + * @since 0.6.3 |
| 30 | + * @ingroup MapsGoogleMaps3 |
| 31 | + * |
| 32 | + * @return true |
| 33 | + */ |
26 | 34 | function efMapsInitGoogleMaps3() { |
27 | 35 | global $egMapsServices, $wgAutoloadClasses; |
28 | 36 | |
Index: trunk/extensions/Maps/Services/GoogleMaps3/Maps_GoogleMaps3.php |
— | — | @@ -37,6 +37,11 @@ |
38 | 38 | ); |
39 | 39 | } |
40 | 40 | |
| 41 | + /** |
| 42 | + * @see MapsMappingService::initParameterInfo |
| 43 | + * |
| 44 | + * @since 0.5 |
| 45 | + */ |
41 | 46 | protected function initParameterInfo( array &$parameters ) { |
42 | 47 | global $egMapsServices, $egMapsGMaps3Type, $egMapsGMaps3Types; |
43 | 48 | |
Index: trunk/extensions/Maps/Services/OpenLayers/Maps_OpenLayers.php |
— | — | @@ -40,6 +40,11 @@ |
41 | 41 | $egMapsOLLoadedLayers = array(); |
42 | 42 | } |
43 | 43 | |
| 44 | + /** |
| 45 | + * @see MapsMappingService::initParameterInfo |
| 46 | + * |
| 47 | + * @since 0.5 |
| 48 | + */ |
44 | 49 | protected function initParameterInfo( array &$parameters ) { |
45 | 50 | global $egMapsServices, $egMapsOLLayers, $egMapsOLControls, $egMapsOpenLayersZoom; |
46 | 51 | |
— | — | @@ -165,6 +170,8 @@ |
166 | 171 | * Removed the layer groups from the layer list, and adds their members back in. |
167 | 172 | * |
168 | 173 | * @param array $layers |
| 174 | + * @param string $name |
| 175 | + * @param array $parameters |
169 | 176 | */ |
170 | 177 | public static function unpackLayerGroups( array &$layers, $name, array $parameters ) { |
171 | 178 | global $egMapsOLLayerGroups; |
Index: trunk/extensions/Maps/Services/OpenLayers/OpenLayers.php |
— | — | @@ -22,6 +22,14 @@ |
23 | 23 | |
24 | 24 | $wgHooks['MappingServiceLoad'][] = 'efMapsInitOpenLayers'; |
25 | 25 | |
| 26 | +/** |
| 27 | + * Initialization function for the OpenLayers service. |
| 28 | + * |
| 29 | + * @since 0.6.3 |
| 30 | + * @ingroup MapsOpenLayers |
| 31 | + * |
| 32 | + * @return true |
| 33 | + */ |
26 | 34 | function efMapsInitOpenLayers() { |
27 | 35 | global $egMapsServices, $wgAutoloadClasses; |
28 | 36 | |
Index: trunk/extensions/Maps/Services/Maps_MappingService.php |
— | — | @@ -96,6 +96,8 @@ |
97 | 97 | * Initializes the service parameters. |
98 | 98 | * |
99 | 99 | * You can override this method to set service specific parameters in the inheriting class. |
| 100 | + * |
| 101 | + * @param array $parameters |
100 | 102 | */ |
101 | 103 | protected function initParameterInfo( array &$parameters ) { |
102 | 104 | } |
Index: trunk/extensions/Maps/Services/GoogleMaps/GoogleMaps.php |
— | — | @@ -22,6 +22,14 @@ |
23 | 23 | |
24 | 24 | $wgHooks['MappingServiceLoad'][] = 'efMapsInitGoogleMaps'; |
25 | 25 | |
| 26 | +/** |
| 27 | + * Initialization function for the Google Maps v2 service. |
| 28 | + * |
| 29 | + * @since 0.6.3 |
| 30 | + * @ingroup MapsGoogleMaps |
| 31 | + * |
| 32 | + * @return true |
| 33 | + */ |
26 | 34 | function efMapsInitGoogleMaps() { |
27 | 35 | global $egMapsServices, $wgAutoloadClasses; |
28 | 36 | |
Index: trunk/extensions/Maps/Services/GoogleMaps/Maps_GoogleMaps.php |
— | — | @@ -37,6 +37,11 @@ |
38 | 38 | ); |
39 | 39 | } |
40 | 40 | |
| 41 | + /** |
| 42 | + * @see MapsMappingService::initParameterInfo |
| 43 | + * |
| 44 | + * @since 0.5 |
| 45 | + */ |
41 | 46 | protected function initParameterInfo( array &$parameters ) { |
42 | 47 | global $egMapsServices, $egMapsGoogleMapsType, $egMapsGoogleMapsTypes, $egMapsGoogleAutozoom, $egMapsGMapControls; |
43 | 48 | |
Index: trunk/extensions/Maps/Services/OSM/OSM.php |
— | — | @@ -26,6 +26,7 @@ |
27 | 27 | * Initialization function for the OSM service. |
28 | 28 | * |
29 | 29 | * @since 0.6.4 |
| 30 | + * @ingroup OSM |
30 | 31 | * |
31 | 32 | * @return true |
32 | 33 | */ |