2008-10-27 20:33:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* InputBox extension
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
2008-10-27 20:56:23 +00:00
|
|
|
*
|
|
|
|
* This file contains the main include file for the Inputbox extension of
|
|
|
|
* MediaWiki.
|
2008-10-27 20:33:18 +00:00
|
|
|
*
|
|
|
|
* Usage: Add the following line in LocalSettings.php:
|
|
|
|
* require_once( "$IP/extensions/InputBox/InputBox.php" );
|
|
|
|
*
|
|
|
|
* @author Erik Moeller <moeller@scireview.de>
|
|
|
|
* namespaces search improvements partially by
|
2008-10-27 20:56:23 +00:00
|
|
|
* Leonardo Pimenta <leo.lns@gmail.com>
|
2008-10-27 20:33:18 +00:00
|
|
|
* Cleaned up by Trevor Parscal <tparscal@wikimedia.org>
|
|
|
|
* @copyright Public domain
|
|
|
|
* @license Public domain
|
|
|
|
* @version 0.1.1
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Check environment
|
2008-10-27 20:56:23 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
|
|
echo( "This is an extension to the MediaWiki package and cannot be run standalone.\n" );
|
|
|
|
die( -1 );
|
2008-10-27 20:33:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Configuration */
|
|
|
|
|
|
|
|
// Credits
|
|
|
|
$wgExtensionCredits['parserhook'][] = array(
|
2009-04-27 03:53:32 +00:00
|
|
|
'path' => __FILE__,
|
2008-10-27 20:38:10 +00:00
|
|
|
'name' => 'InputBox',
|
2008-10-27 20:33:18 +00:00
|
|
|
'author' => array( 'Erik Moeller', 'Leonardo Pimenta', 'Rob Church', 'Trevor Parscal' ),
|
2008-10-27 20:38:10 +00:00
|
|
|
'url' => 'http://www.mediawiki.org/wiki/Extension:InputBox',
|
2008-10-27 20:33:18 +00:00
|
|
|
'descriptionmsg' => 'inputbox-desc',
|
|
|
|
);
|
|
|
|
|
|
|
|
// Shortcut to this extension directory
|
|
|
|
$dir = dirname( __FILE__ ) . '/';
|
|
|
|
|
|
|
|
// Internationalization
|
|
|
|
$wgExtensionMessagesFiles['InputBox'] = $dir . 'InputBox.i18n.php';
|
|
|
|
|
|
|
|
// Register auto load for the special page class
|
|
|
|
$wgAutoloadClasses['InputBoxHooks'] = $dir . 'InputBox.hooks.php';
|
|
|
|
$wgAutoloadClasses['InputBox'] = $dir . 'InputBox.classes.php';
|
|
|
|
|
|
|
|
// Register parser hook
|
2009-09-04 22:22:12 +00:00
|
|
|
$wgHooks['ParserFirstCallInit'][] = 'InputBoxHooks::register';
|
2010-03-18 19:11:12 +00:00
|
|
|
$wgHooks['MediaWikiPerformAction'][] = 'InputBoxHooks::onMediaWikiPerformAction';
|