Index: trunk/extensions/Maps/includes/manipulations/Maps_ParamLocation.php |
— | — | @@ -8,8 +8,9 @@ |
9 | 9 | * @file Maps_ParamLocation.php |
10 | 10 | * @ingroup Maps |
11 | 11 | * @ingroup ParameterManipulations |
12 | | - * |
13 | | - * @author Jeroen De Dauw |
| 12 | + * |
| 13 | + * @licence GNU GPL v3 |
| 14 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 15 | * @author Daniel Werner |
15 | 16 | */ |
16 | 17 | class MapsParamLocation extends ItemParameterManipulation { |
— | — | @@ -17,7 +18,7 @@ |
18 | 19 | /** |
19 | 20 | * In some usecases, the parameter values will contain extra location |
20 | 21 | * metadata, which should be ignored here. This field holds the delimiter |
21 | | - * used to seperata this data from the actual location. |
| 22 | + * used to separate this data from the actual location. |
22 | 23 | * |
23 | 24 | * @since 0.7.2 |
24 | 25 | * |
Index: trunk/extensions/Maps/includes/manipulations/Maps_ParamGeoService.php |
— | — | @@ -9,8 +9,9 @@ |
10 | 10 | * @file Maps_ParamGeoService.php |
11 | 11 | * @ingroup Maps |
12 | 12 | * @ingroup ParameterManipulations |
13 | | - * |
14 | | - * @author Jeroen De Dauw |
| 13 | + * |
| 14 | + * @licence GNU GPL v3 |
| 15 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 16 | */ |
16 | 17 | class MapsParamGeoService extends ItemParameterManipulation { |
17 | 18 | |
Index: trunk/extensions/Maps/includes/manipulations/Maps_ParamFile.php |
— | — | @@ -8,8 +8,9 @@ |
9 | 9 | * @file Maps_ParamFile.php |
10 | 10 | * @ingroup Maps |
11 | 11 | * @ingroup ParameterManipulations |
12 | | - * |
13 | | - * @author Jeroen De Dauw |
| 12 | + * |
| 13 | + * @licence GNU GPL v3 |
| 14 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 15 | */ |
15 | 16 | class MapsParamFile extends ItemParameterManipulation { |
16 | 17 | |
Index: trunk/extensions/Maps/includes/manipulations/Maps_ParamService.php |
— | — | @@ -1,15 +1,16 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * Parameter manipulation ensuring the service is valid and loading adittional parameter definitions. |
| 5 | + * Parameter manipulation ensuring the service is valid and loading additional parameter definitions. |
6 | 6 | * |
7 | 7 | * @since 0.7 |
8 | 8 | * |
9 | 9 | * @file Maps_ParamService.php |
10 | 10 | * @ingroup Maps |
11 | 11 | * @ingroup ParameterManipulations |
12 | | - * |
13 | | - * @author Jeroen De Dauw |
| 12 | + * |
| 13 | + * @licence GNU GPL v3 |
| 14 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 15 | */ |
15 | 16 | class MapsParamService extends ItemParameterManipulation { |
16 | 17 | |
— | — | @@ -24,7 +25,9 @@ |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * Constructor. |
28 | | - * |
| 29 | + * |
| 30 | + * @param string $feature |
| 31 | + * |
29 | 32 | * @since 0.7 |
30 | 33 | */ |
31 | 34 | public function __construct( $feature ) { |
Index: trunk/extensions/Maps/includes/manipulations/Maps_ParamZoom.php |
— | — | @@ -1,15 +1,16 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * Parameter manipulation for zoom levels that overides the default in case of multiple locations. |
| 5 | + * Parameter manipulation for zoom levels that overrides the default in case of multiple locations. |
6 | 6 | * |
7 | 7 | * @since 0.7 |
8 | 8 | * |
9 | 9 | * @file Maps_ParamZoom.php |
10 | 10 | * @ingroup Maps |
11 | 11 | * @ingroup ParameterManipulations |
12 | | - * |
13 | | - * @author Jeroen De Dauw |
| 12 | + * |
| 13 | + * @licence GNU GPL v3 |
| 14 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 15 | */ |
15 | 16 | class MapsParamZoom extends ItemParameterManipulation { |
16 | 17 | |
Index: trunk/extensions/Maps/includes/manipulations/Maps_ParamDimension.php |
— | — | @@ -9,7 +9,8 @@ |
10 | 10 | * @ingroup Maps |
11 | 11 | * @ingroup ParameterManipulations |
12 | 12 | * |
13 | | - * @author Jeroen De Dauw |
| 13 | + * @licence GNU GPL v3 |
| 14 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 15 | */ |
15 | 16 | class MapsParamDimension extends ItemParameterManipulation { |
16 | 17 | |
— | — | @@ -25,6 +26,8 @@ |
26 | 27 | /** |
27 | 28 | * Constructor. |
28 | 29 | * |
| 30 | + * @param string $dimension |
| 31 | + * |
29 | 32 | * @since 0.7 |
30 | 33 | */ |
31 | 34 | public function __construct( $dimension ) { |
Index: trunk/extensions/Maps/includes/layers/Maps_ImageLayer.php |
— | — | @@ -7,13 +7,14 @@ |
8 | 8 | * |
9 | 9 | * @file Maps_ImageLayer.php |
10 | 10 | * @ingroup Maps |
11 | | - * |
12 | | - * @author Jeroen De Dauw |
| 11 | + * |
| 12 | + * @licence GNU GPL v3 |
| 13 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
13 | 14 | */ |
14 | 15 | class MapsImageLayer extends MapsLayer { |
15 | 16 | |
16 | 17 | /** |
17 | | - * Registeres the layer. |
| 18 | + * Registers the layer. |
18 | 19 | * |
19 | 20 | * @since 0.7.2 |
20 | 21 | */ |
Index: trunk/extensions/Maps/includes/layers/Maps_KMLLayer.php |
— | — | @@ -7,8 +7,9 @@ |
8 | 8 | * |
9 | 9 | * @file Maps_KMLLayer.php |
10 | 10 | * @ingroup Maps |
11 | | - * |
12 | | - * @author Jeroen De Dauw |
| 11 | + * |
| 12 | + * @licence GNU GPL v3 |
| 13 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
13 | 14 | */ |
14 | 15 | class MapsKMLLayer extends MapsLayer { |
15 | 16 | |