MediaWiki  1.33.0
InputBoxHooks.php
Go to the documentation of this file.
1 <?php
13 
19  public static function register( Parser &$parser ) {
20  // Register the hook with the parser
21  $parser->setHook( 'inputbox', [ 'InputBoxHooks', 'render' ] );
22 
23  // Continue
24  return true;
25  }
26 
33  public static function onSpecialPageBeforeExecute( $special, $subPage ) {
34  $request = $special->getRequest();
35  $prefix = $request->getText( 'prefix', '' );
36  $title = $request->getText( 'wpNewTitle', '' );
37  $search = $request->getText( 'search', '' );
38  $searchfilter = $request->getText( 'searchfilter', '' );
39  if ( $special->getName() == 'Movepage' && $prefix !== '' && $title !== '' ) {
40  $request->setVal( 'wpNewTitle', $prefix . $title );
41  $request->unsetVal( 'prefix' );
42  }
43  if ( $special->getName() == 'Search' && $searchfilter !== '' ) {
44  $request->setVal( 'search', $search . ' ' . $searchfilter );
45  }
46  return true;
47  }
48 
56  public static function render( $input, $args, Parser $parser ) {
57  // Create InputBox
58  $inputBox = new InputBox( $parser );
59 
60  // Configure InputBox
61  $inputBox->extractOptions( $parser->replaceVariables( $input ) );
62 
63  // Return output
64  return $inputBox->render();
65  }
66 
79  public static function onMediaWikiPerformAction(
80  $output,
81  $article,
82  $title,
83  $user,
84  $request,
85  $wiki
86  ) {
87  if ( $wiki->getAction() !== 'edit' && $request->getText( 'veaction' ) !== 'edit' ) {
88  // not our problem
89  return true;
90  }
91  if ( $request->getText( 'prefix', '' ) === '' ) {
92  // Fine
93  return true;
94  }
95 
96  $params = $request->getValues();
97  $title = $params['prefix'];
98  if ( isset( $params['title'] ) ) {
99  $title .= $params['title'];
100  }
101  unset( $params['prefix'] );
102  $params['title'] = $title;
103 
104  global $wgScript;
105  $output->redirect( wfAppendQuery( $wgScript, $params ), '301' );
106  return false;
107  }
108 }
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
$article
return true to allow those checks to and false if checking is done remove or add to the links of a group of changes in EnhancedChangesList Hook subscribers can return false to omit this line from recentchanges use this to change the tables headers change it to an object instance and return false override the list derivative used the name of the old file & $article
Definition: hooks.txt:1476
InputBoxHooks\onSpecialPageBeforeExecute
static onSpecialPageBeforeExecute( $special, $subPage)
Prepend prefix to wpNewTitle if necessary.
Definition: InputBoxHooks.php:33
$wgScript
$wgScript
The URL path to index.php.
Definition: DefaultSettings.php:186
InputBoxHooks\render
static render( $input, $args, Parser $parser)
Render the input box.
Definition: InputBoxHooks.php:56
$params
$params
Definition: styleTest.css.php:44
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
InputBox
InputBox class.
Definition: InputBox.php:12
InputBoxHooks\onMediaWikiPerformAction
static onMediaWikiPerformAction( $output, $article, $title, $user, $request, $wiki)
<inputbox type="create..."> sends requests with action=edit, and possibly a &prefix=Foo.
Definition: InputBoxHooks.php:79
wfAppendQuery
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
Definition: GlobalFunctions.php:463
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
InputBoxHooks
InputBox hooks.
Definition: InputBoxHooks.php:12
$input
if(is_array( $mode)) switch( $mode) $input
Definition: postprocess-phan.php:141
$parser
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition: hooks.txt:1802
$output
$output
Definition: SyntaxHighlight.php:334
$request
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2636
$args
if( $line===false) $args
Definition: cdb.php:64