mediawiki-extensions-InputBox/InputBox.hooks.php

109 lines
2.5 KiB
PHP
Raw Normal View History

2008-10-27 20:33:18 +00:00
<?php
/**
* Hooks for InputBox extension
*
* @file
* @ingroup Extensions
*/
/**
* InputBox hooks
*/
2008-10-27 20:33:18 +00:00
class InputBoxHooks {
/**
* Initialization
* @param Parser &$parser
* @return true
*/
public static function register( Parser &$parser ) {
2008-10-27 20:33:18 +00:00
// Register the hook with the parser
$parser->setHook( 'inputbox', [ 'InputBoxHooks', 'render' ] );
2008-10-27 20:33:18 +00:00
// Continue
return true;
}
/**
* Prepend prefix to wpNewTitle if necessary
* @param SpecialPage $special
* @param string $subPage
* @return true
*/
public static function onSpecialPageBeforeExecute( $special, $subPage ) {
$request = $special->getRequest();
$prefix = $request->getText( 'prefix', '' );
$title = $request->getText( 'wpNewTitle', '' );
$search = $request->getText( 'search', '' );
$searchfilter = $request->getText( 'searchfilter', '' );
if ( $special->getName() == 'Movepage' && $prefix !== '' && $title !== '' ) {
$request->setVal( 'wpNewTitle', $prefix . $title );
$request->unsetVal( 'prefix' );
}
if ( $special->getName() == 'Search' && $searchfilter !== '' ) {
$request->setVal( 'search', $search . ' ' . $searchfilter );
}
return true;
}
/**
* Render the input box
* @param string $input
* @param array $args
* @param Parser $parser
* @return string
*/
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:33:18 +00:00
// Configure InputBox
$inputBox->extractOptions( $parser->replaceVariables( $input ) );
2008-10-27 20:33:18 +00:00
// Return output
return $inputBox->render();
}
/**
* <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 OutputPage $output
* @param Article $article
* @param Title $title
* @param User $user
* @param WebRequest $request
* @param MediaWiki $wiki
* @return bool
*/
public static function onMediaWikiPerformAction(
$output,
$article,
$title,
$user,
$request,
$wiki
) {
if ( $wiki->getAction( $request ) !== 'edit' ) {
// 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'] ) ) {
2010-03-18 20:04:20 +00:00
$title .= $params['title'];
}
2010-03-18 20:04:20 +00:00
unset( $params['prefix'] );
$params['title'] = $title;
global $wgScript;
2010-03-18 20:04:20 +00:00
$output->redirect( wfAppendQuery( $wgScript, $params ), '301' );
return false;
}
}