2008-10-27 20:33:18 +00:00
|
|
|
<?php
|
2015-04-25 23:56:22 +00:00
|
|
|
if ( function_exists( 'wfLoadExtension' ) ) {
|
|
|
|
wfLoadExtension( 'InputBox' );
|
|
|
|
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
|
|
|
$wgMessagesDirs['InputBox'] = __DIR__ . '/i18n';
|
2018-08-28 18:39:07 +00:00
|
|
|
wfWarn(
|
2015-04-25 23:56:22 +00:00
|
|
|
'Deprecated PHP entry point used for InputBox extension. Please use wfLoadExtension instead, ' .
|
|
|
|
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
2018-08-28 18:39:07 +00:00
|
|
|
);
|
2015-04-25 23:56:22 +00:00
|
|
|
return;
|
|
|
|
} else {
|
2018-08-28 18:39:07 +00:00
|
|
|
die( 'This version of the InputBox extension requires MediaWiki 1.30+' );
|
2008-10-27 20:33:18 +00:00
|
|
|
}
|