2008-10-27 20:33:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Hooks for InputBox extension
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
|
|
|
*/
|
|
|
|
|
|
|
|
// InputBox hooks
|
|
|
|
class InputBoxHooks {
|
|
|
|
// Initialization
|
2012-08-30 16:20:32 +00:00
|
|
|
public static function register( Parser &$parser ) {
|
2008-10-27 20:33:18 +00:00
|
|
|
// Register the hook with the parser
|
2009-09-04 22:22:12 +00:00
|
|
|
$parser->setHook( 'inputbox', array( 'InputBoxHooks', 'render' ) );
|
2008-10-27 20:56:23 +00:00
|
|
|
|
2008-10-27 20:33:18 +00:00
|
|
|
// Continue
|
|
|
|
return true;
|
|
|
|
}
|
2008-10-27 20:56:23 +00:00
|
|
|
|
2008-10-27 20:33:18 +00:00
|
|
|
// Render the input box
|
2012-08-30 16:20:32 +00:00
|
|
|
public static function render( $input, $args, Parser $parser ) {
|
2008-10-27 20:33:18 +00:00
|
|
|
// Create InputBox
|
|
|
|
$inputBox = new InputBox( $parser );
|
2008-10-27 20:56:23 +00:00
|
|
|
|
2008-10-27 20:33:18 +00:00
|
|
|
// Configure InputBox
|
|
|
|
$inputBox->extractOptions( $parser->replaceVariables( $input ) );
|
2008-10-27 20:56:23 +00:00
|
|
|
|
2008-10-27 20:33:18 +00:00
|
|
|
// Return output
|
|
|
|
return $inputBox->render();
|
|
|
|
}
|
2010-03-18 19:11:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* <inputbox type=create...> sends requests with action=edit, and
|
|
|
|
* possibly a &prefix=Foo. So we pick that up here, munge prefix
|
|
|
|
* and title together, and redirect back out to the real page
|
|
|
|
* @param $output OutputPage
|
|
|
|
* @param $article Article
|
|
|
|
* @param $title Title
|
|
|
|
* @param $user User
|
|
|
|
* @param $request WebRequest
|
|
|
|
* @param $wiki MediaWiki
|
2012-08-30 16:20:32 +00:00
|
|
|
* @return bool
|
2010-03-18 19:11:12 +00:00
|
|
|
*/
|
|
|
|
public static function onMediaWikiPerformAction(
|
|
|
|
$output,
|
|
|
|
$article,
|
|
|
|
$title,
|
|
|
|
$user,
|
|
|
|
$request,
|
|
|
|
$wiki )
|
|
|
|
{
|
2010-12-16 20:11:53 +00:00
|
|
|
if( $wiki->getAction( $request ) !== 'edit' ){
|
2010-03-18 19:11:12 +00:00
|
|
|
# not our problem
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if( $request->getText( 'prefix', '' ) === '' ){
|
|
|
|
# Fine
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$params = $request->getValues();
|
2010-03-18 20:04:20 +00:00
|
|
|
$title = $params['prefix'];
|
|
|
|
if ( isset( $params['title'] ) ){
|
|
|
|
$title .= $params['title'];
|
2010-03-18 19:11:12 +00:00
|
|
|
}
|
2010-03-18 20:04:20 +00:00
|
|
|
unset( $params['prefix'] );
|
|
|
|
$params['title'] = $title;
|
2010-03-18 19:11:12 +00:00
|
|
|
|
|
|
|
global $wgScript;
|
2010-03-18 20:04:20 +00:00
|
|
|
$output->redirect( wfAppendQuery( $wgScript, $params ), '301' );
|
2010-03-18 19:11:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-10-27 20:56:23 +00:00
|
|
|
}
|