blob: 081eeaa6b8186785a3fa6c9d40d6536351a36491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/**
* ImageMap extension - Allows clickable HTML image maps.
*
* @link https://www.mediawiki.org/wiki/Extension:ImageMap Documentation
*
* @file
* @ingroup Extensions
* @package MediaWiki
* @author Tim Starling
* @copyright (C) 2007 Tim Starling
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*/
if ( !defined( 'MEDIAWIKI' ) ) {
die( 'This file is a MediaWiki extension, it is not a valid entry point' );
}
//self executing anonymous function to prevent global scope assumptions
call_user_func( function() {
$dir = __DIR__ . '/';
$GLOBALS['wgMessagesDirs']['ImageMap'] = __DIR__ . '/i18n';
$GLOBALS['wgExtensionMessagesFiles']['ImageMap'] = $dir . 'ImageMap.i18n.php';
$GLOBALS['wgAutoloadClasses']['ImageMap'] = $dir . 'ImageMap_body.php';
$GLOBALS['wgHooks']['ParserFirstCallInit'][] = 'wfSetupImageMap';
$GLOBALS['wgExtensionCredits']['parserhook']['ImageMap'] = array(
'path' => __FILE__,
'name' => 'ImageMap',
'author' => 'Tim Starling',
'url' => 'https://www.mediawiki.org/wiki/Extension:ImageMap',
'descriptionmsg' => 'imagemap_desc',
);
$GLOBALS['wgParserTestFiles'][] = $dir . 'imageMapParserTests.txt';
} );
/**
* @param $parser Parser
* @return bool
*/
function wfSetupImageMap( &$parser ) {
$parser->setHook( 'imagemap', array( 'ImageMap', 'render' ) );
return true;
}
|