Index: trunk/extensions/SemanticDrilldown/includes/SD_Settings.php |
— | — | @@ -1,5 +1,14 @@ |
2 | 2 | <?php |
3 | 3 | |
| 4 | +/** |
| 5 | + * Default settings for Semantic Drilldown. |
| 6 | + * |
| 7 | + * Note: |
| 8 | + * Do not use this file as entry point, |
| 9 | + * use SemanticDrilldown.php in this extensions root instead. |
| 10 | + */ |
| 11 | +if ( !defined( 'MEDIAWIKI' ) ) die(); |
| 12 | + |
4 | 13 | # ## |
5 | 14 | # This is the path to your installation of Semantic Drilldown as |
6 | 15 | # seen from the web. Change it if required ($wgScriptPath is the |
Index: trunk/extensions/SemanticDrilldown/SemanticDrilldown.php |
— | — | @@ -0,0 +1,7 @@ |
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * Main entry point for the SemanticDrilldown extension. |
| 6 | + */ |
| 7 | + |
| 8 | +require_once dirname( __FILE__ ) . '/includes/SD_Settings.php'; |
\ No newline at end of file |
Property changes on: trunk/extensions/SemanticDrilldown/SemanticDrilldown.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 9 | + native |