MediaWiki REL1_33
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,
82 $title,
83 $user,
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}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgScript
The URL path to index.php.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
if( $line===false) $args
Definition cdb.php:64
InputBox hooks.
static onMediaWikiPerformAction( $output, $article, $title, $user, $request, $wiki)
<inputbox type=create...>> sends requests with action=edit, and possibly a &prefix=Foo.
static onSpecialPageBeforeExecute( $special, $subPage)
Prepend prefix to wpNewTitle if necessary.
static render( $input, $args, Parser $parser)
Render the input box.
InputBox class.
Definition InputBox.php:12
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
Definition Parser.php:69
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:2843
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition hooks.txt:1834
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:955
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:1580
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2272
if(is_array($mode)) switch( $mode) $input
$params