Index: trunk/extensions/Maps/Features/DisplayPoint/Maps_BasePointMap.php |
— | — | @@ -1,23 +1,11 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * File holding class MapsBasePointMap. |
6 | | - * |
7 | | - * @file Maps_BasePointMap.php |
8 | | - * @ingroup Maps |
9 | | - * |
10 | | - * @author Jeroen De Dauw |
11 | | - */ |
12 | | - |
13 | | -if ( !defined( 'MEDIAWIKI' ) ) { |
14 | | - die( 'Not an entry point.' ); |
15 | | -} |
16 | | - |
17 | | -/** |
18 | 5 | * Abstract class MapsBasePointMap provides the scafolding for classes handling display_point(s) |
19 | 6 | * calls for a specific mapping service. It inherits from MapsMapFeature and therefore forces |
20 | 7 | * inheriting classes to implement sereveral methods. |
21 | 8 | * |
| 9 | + * @file Maps_BasePointMap.php |
22 | 10 | * @ingroup Maps |
23 | 11 | * |
24 | 12 | * @author Jeroen De Dauw |
Index: trunk/extensions/Maps/Features/DisplayMap/Maps_BaseMap.php |
— | — | @@ -1,23 +1,11 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * File holding class MapsBaseMap. |
6 | | - * |
7 | | - * @file Maps_BaseMap.php |
8 | | - * @ingroup Maps |
9 | | - * |
10 | | - * @author Jeroen De Dauw |
11 | | - */ |
12 | | - |
13 | | -if ( !defined( 'MEDIAWIKI' ) ) { |
14 | | - die( 'Not an entry point.' ); |
15 | | -} |
16 | | - |
17 | | -/** |
18 | 5 | * Abstract class MapsBaseMap provides the scafolding for classes handling display_map |
19 | 6 | * calls for a specific mapping service. It inherits from MapsMapFeature and therefore |
20 | 7 | * forces inheriting classes to implement sereveral methods. |
21 | 8 | * |
| 9 | + * @file Maps_BaseMap.php |
22 | 10 | * @ingroup Maps |
23 | 11 | * |
24 | 12 | * @author Jeroen De Dauw |
Index: trunk/extensions/Maps/Features/iMappingFeature.php |
— | — | @@ -1,25 +1,15 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * File holding interface iMappingFeature. |
| 5 | + * Interface that should be implemented by all mapping features that want to use the. |
6 | 6 | * |
| 7 | + * @since 0.6.5 |
| 8 | + * |
7 | 9 | * @file iMappingFeature.php |
8 | 10 | * @ingroup Maps |
9 | 11 | * |
10 | 12 | * @author Jeroen De Dauw |
11 | 13 | */ |
12 | | - |
13 | | -if ( !defined( 'MEDIAWIKI' ) ) { |
14 | | - die( 'Not an entry point.' ); |
15 | | -} |
16 | | - |
17 | | -/** |
18 | | - * Interface that should be implemented by all mapping features that want to use the. |
19 | | - * |
20 | | - * @since 0.6.5 |
21 | | - * |
22 | | - * @author Jeroen De Dauw |
23 | | - */ |
24 | 14 | interface iMappingFeature { |
25 | 15 | |
26 | 16 | /** |
Index: trunk/extensions/Maps/Features/iMappingParserFunction.php |
— | — | @@ -1,25 +1,15 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * File holding interface iMappingParserFunction. |
| 5 | + * Interface that should be implemented by all map display parser functions. |
6 | 6 | * |
| 7 | +* @since 0.6.3 |
| 8 | + * |
7 | 9 | * @file iMappingParserFunction.php |
8 | 10 | * @ingroup Maps |
9 | 11 | * |
10 | 12 | * @author Jeroen De Dauw |
11 | 13 | */ |
12 | | - |
13 | | -if ( !defined( 'MEDIAWIKI' ) ) { |
14 | | - die( 'Not an entry point.' ); |
15 | | -} |
16 | | - |
17 | | -/** |
18 | | - * Interface that should be implemented by all map display parser functions. |
19 | | - * |
20 | | - * @author Jeroen De Dauw |
21 | | - * |
22 | | - * @since 0.6.3 |
23 | | - */ |
24 | 14 | interface iMappingParserFunction extends iMappingFeature { |
25 | 15 | |
26 | 16 | /** |
— | — | @@ -39,4 +29,5 @@ |
40 | 30 | * @return array |
41 | 31 | */ |
42 | 32 | function getMapHtml( Parser &$parser, array $params ); |
| 33 | + |
43 | 34 | } |
\ No newline at end of file |