mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ImageMap
synced 2024-11-15 10:25:09 +00:00
16 lines
356 B
PHP
16 lines
356 B
PHP
|
<?php
|
||
|
|
||
|
$wgExtensionFunctions[] = 'wfSetupImageMap';
|
||
|
$wgAutoloadClasses['ImageMap'] = dirname(__FILE__).'/ImageMap_body.php';
|
||
|
$wgExtensionCredits['parserhook']['ImageMap'] = array(
|
||
|
'name' => 'ImageMap',
|
||
|
'author' => 'Tim Starling',
|
||
|
);
|
||
|
|
||
|
function wfSetupImageMap() {
|
||
|
global $wgParser;
|
||
|
$wgParser->setHook( 'imagemap', array( 'ImageMap', 'render' ) );
|
||
|
}
|
||
|
|
||
|
?>
|