mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ImageMap
synced 2024-11-15 18:29:27 +00:00
25 lines
809 B
PHP
25 lines
809 B
PHP
<?php
|
|
|
|
$dir = dirname(__FILE__) . '/';
|
|
$wgExtensionMessagesFiles['ImageMap'] = $dir . 'ImageMap.i18n.php';
|
|
$wgAutoloadClasses['ImageMap'] = $dir . 'ImageMap_body.php';
|
|
if ( defined( 'MW_SUPPORTS_PARSERFIRSTCALLINIT' ) ) {
|
|
$wgHooks['ParserFirstCallInit'][] = 'wfSetupImageMap';
|
|
} else {
|
|
$wgExtensionFunctions[] = 'wfSetupImageMap';
|
|
}
|
|
|
|
$wgExtensionCredits['parserhook']['ImageMap'] = array(
|
|
'name' => 'ImageMap',
|
|
'author' => 'Tim Starling',
|
|
'url' => 'http://www.mediawiki.org/wiki/Extension:ImageMap',
|
|
'description' => 'Allows client-side clickable image maps using <nowiki><imagemap></nowiki> tag.',
|
|
'descriptionmsg' => 'imagemap_desc',
|
|
);
|
|
|
|
function wfSetupImageMap() {
|
|
global $wgParser;
|
|
$wgParser->setHook( 'imagemap', array( 'ImageMap', 'render' ) );
|
|
return true;
|
|
}
|