resourceloader: Add $conf parameter to the 'ResourceLoaderGetConfigVars' hook
[lhc/web/wiklou.git] / docs / hooks.txt
1 hooks.txt
2
3 This document describes how event hooks work in MediaWiki; how to add hooks for
4 an event; and how to run hooks for an event.
5
6 ==Glossary==
7
8 event
9 Something that happens with the wiki. For example: a user logs in. A wiki
10 page is saved. A wiki page is deleted. Often there are two events
11 associated with a single action: one before the code is run to make the
12 event happen, and one after. Each event has a name, preferably in
13 CamelCase. For example, 'UserLogin', 'PageContentSave',
14 'PageContentSaveComplete', 'ArticleDelete'.
15
16 hook
17 A clump of code and data that should be run when an event happens. This can
18 be either a function and a chunk of data, or an object and a method.
19
20 hook function
21 The function part of a hook.
22
23 ==Rationale==
24
25 Hooks allow us to decouple optionally-run code from code that is run for
26 everyone. It allows MediaWiki hackers, third-party developers and local
27 administrators to define code that will be run at certain points in the mainline
28 code, and to modify the data run by that mainline code. Hooks can keep mainline
29 code simple, and make it easier to write extensions. Hooks are a principled
30 alternative to local patches.
31
32 Consider, for example, two options in MediaWiki. One reverses the order of a
33 title before displaying the article; the other converts the title to all
34 uppercase letters. Currently, in MediaWiki code, we would handle this as follows
35 (note: not real code, here):
36
37 function showAnArticle( $article ) {
38 global $wgReverseTitle, $wgCapitalizeTitle;
39
40 if ( $wgReverseTitle ) {
41 wfReverseTitle( $article );
42 }
43
44 if ( $wgCapitalizeTitle ) {
45 wfCapitalizeTitle( $article );
46 }
47
48 # code to actually show the article goes here
49 }
50
51 An extension writer, or a local admin, will often add custom code to the
52 function -- with or without a global variable. For example, someone wanting
53 email notification when an article is shown may add:
54
55 function showAnArticle( $article ) {
56 global $wgReverseTitle, $wgCapitalizeTitle, $wgNotifyArticle;
57
58 if ( $wgReverseTitle ) {
59 wfReverseTitle( $article );
60 }
61
62 if ( $wgCapitalizeTitle ) {
63 wfCapitalizeTitle( $article );
64 }
65
66 # code to actually show the article goes here
67
68 if ( $wgNotifyArticle ) {
69 wfNotifyArticleShow( $article );
70 }
71 }
72
73 Using a hook-running strategy, we can avoid having all this option-specific
74 stuff in our mainline code. Using hooks, the function becomes:
75
76 function showAnArticle( $article ) {
77 if ( Hooks::run( 'ArticleShow', [ &$article ] ) ) {
78 # code to actually show the article goes here
79
80 Hooks::run( 'ArticleShowComplete', [ &$article ] );
81 }
82 }
83
84 We've cleaned up the code here by removing clumps of weird, infrequently used
85 code and moving them off somewhere else. It's much easier for someone working
86 with this code to see what's _really_ going on, and make changes or fix bugs.
87
88 In addition, we can take all the code that deals with the little-used
89 title-reversing options (say) and put it in one place. Instead of having little
90 title-reversing if-blocks spread all over the codebase in showAnArticle,
91 deleteAnArticle, exportArticle, etc., we can concentrate it all in an extension
92 file:
93
94 function onArticleShow( &$article ) {
95 # ...
96 }
97
98 function onArticleDelete( &$article ) {
99 # ...
100 }
101
102 function onArticleExport( &$article ) {
103 # ...
104 }
105
106 General practice is to have a dedicated file for functions activated by hooks,
107 which functions named 'onHookName'. In the example above, the file
108 'ReverseHooks.php' includes the functions that should be activated by the
109 'ArticleShow', 'ArticleDelete', and 'ArticleExport' hooks. The 'extension.json'
110 file with the extension's registration just has to add its hook functions
111 to the appropriate events:
112
113 "Hooks": {
114 "ArticleShow": "ReverseHooks:onArticleShow",
115 "ArticleDelete": "ReverseHooks::onArticleDelete",
116 "ArticleExport": "ReverseHooks::onArticleExport"
117 }
118
119 Having all this code related to the title-reversion option in one place means
120 that it's easier to read and understand; you don't have to do a grep-find to see
121 where the $wgReverseTitle variable is used, say.
122
123 If the code is well enough isolated, it can even be excluded when not used --
124 making for some slight savings in memory and load-up performance at runtime.
125 Admins who want to have all the reversed titles can add:
126
127 require_once 'extensions/ReverseTitle.php';
128
129 ...to their LocalSettings.php file; those of us who don't want or need it can
130 just leave it out.
131
132 The extensions don't even have to be shipped with MediaWiki; they could be
133 provided by a third-party developer or written by the admin him/herself.
134
135 ==Writing hooks==
136
137 A hook is a chunk of code run at some particular event. It consists of:
138
139 * a function with some optional accompanying data, or
140 * an object with a method and some optional accompanying data.
141
142 Hooks are registered by adding them to the global $wgHooks array for a given
143 event. All the following are valid ways to define hooks:
144
145 $wgHooks['EventName'][] = 'someFunction'; # function, no data
146 $wgHooks['EventName'][] = [ 'someFunction', $someData ];
147 $wgHooks['EventName'][] = [ 'someFunction' ]; # weird, but OK
148
149 $wgHooks['EventName'][] = $object; # object only
150 $wgHooks['EventName'][] = [ $object, 'someMethod' ];
151 $wgHooks['EventName'][] = [ $object, 'someMethod', $someData ];
152 $wgHooks['EventName'][] = [ $object ]; # weird but OK
153
154 When an event occurs, the function (or object method) will be called with the
155 optional data provided as well as event-specific parameters. The above examples
156 would result in the following code being executed when 'EventName' happened:
157
158 # function, no data
159 someFunction( $param1, $param2 )
160 # function with data
161 someFunction( $someData, $param1, $param2 )
162
163 # object only
164 $object->onEventName( $param1, $param2 )
165 # object with method
166 $object->someMethod( $param1, $param2 )
167 # object with method and data
168 $object->someMethod( $someData, $param1, $param2 )
169
170 Note that when an object is the hook, and there's no specified method, the
171 default method called is 'onEventName'. For different events this would be
172 different: 'onArticleSave', 'onUserLogin', etc.
173
174 The extra data is useful if we want to use the same function or object for
175 different purposes. For example:
176
177 $wgHooks['PageContentSaveComplete'][] = [ 'ircNotify', 'TimStarling' ];
178 $wgHooks['PageContentSaveComplete'][] = [ 'ircNotify', 'brion' ];
179
180 This code would result in ircNotify being run twice when an article is saved:
181 once for 'TimStarling', and once for 'brion'.
182
183 Hooks can return three possible values:
184
185 * No return value (or null): the hook has operated successfully. Previously,
186 true was required. This is the default since MediaWiki 1.23.
187 * "some string": an error occurred; processing should stop and the error
188 should be shown to the user
189 * false: the hook has successfully done the work necessary and the calling
190 function should skip
191
192 The last result would be for cases where the hook function replaces the main
193 functionality. For example, if you wanted to authenticate users to a custom
194 system (LDAP, another PHP program, whatever), you could do:
195
196 $wgHooks['UserLogin'][] = [ 'ldapLogin', $ldapServer ];
197
198 function ldapLogin( $username, $password ) {
199 # log user into LDAP
200 return false;
201 }
202
203 Returning false makes less sense for events where the action is complete, and
204 will normally be ignored.
205
206 Note that none of the examples made use of create_function() as a way to
207 attach a function to a hook. This is known to cause problems (notably with
208 Special:Version), and should be avoided when at all possible.
209
210 ==Using hooks==
211
212 A calling function or method uses the Hooks::run() function to run the hooks
213 related to a particular event, like so:
214
215 class Article {
216 # ...
217 function protect() {
218 global $wgUser;
219
220 // Avoid PHP 7.1 warning from passing $this by reference
221 $article = $this;
222
223 if ( Hooks::run( 'ArticleProtect', [ &$article, &$wgUser ] ) ) {
224 # protect the article
225 Hooks::run( 'ArticleProtectComplete', [ &$article, &$wgUser ] );
226 }
227 }
228 }
229
230 Hooks::run() returns true if the calling function should continue processing
231 (the hooks ran OK, or there are no hooks to run), or false if it shouldn't (an
232 error occurred, or one of the hooks handled the action already). Checking the
233 return value matters more for "before" hooks than for "complete" hooks.
234
235 Note that hook parameters are passed in an array; this is a necessary
236 inconvenience to make it possible to pass reference values (which can be changed)
237 by the hook callback.
238
239 ==Events and parameters==
240
241 This is a list of known events and parameters; please add to it if you're going
242 to add events to the MediaWiki code.
243
244 'AbortAutoblock': Return false to cancel an autoblock.
245 $autoblockip: The IP going to be autoblocked.
246 &$block: The block from which the autoblock is coming.
247
248 'AbortDiffCache': Can be used to cancel the caching of a diff.
249 &$diffEngine: DifferenceEngine object
250
251 'AbortEmailNotification': Can be used to cancel email notifications for an edit.
252 $editor: The User who made the change.
253 $title: The Title of the page that was edited.
254 $rc: The current RecentChange object.
255
256 'AbortTalkPageEmailNotification': Return false to cancel talk page email
257 notification
258 $targetUser: the user whom to send talk page email notification
259 $title: the page title
260
261 'ActionBeforeFormDisplay': Before executing the HTMLForm object.
262 $name: name of the action
263 &$form: HTMLForm object
264 $article: Article object
265
266 'ActionModifyFormFields': Before creating an HTMLForm object for a page action;
267 Allows to change the fields on the form that will be generated.
268 $name: name of the action
269 &$fields: HTMLForm descriptor array
270 $article: Article object
271
272 'AddNewAccount': DEPRECATED since 1.27! Use LocalUserCreated.
273 After a user account is created.
274 $user: the User object that was created. (Parameter added in 1.7)
275 $byEmail: true when account was created "by email" (added in 1.12)
276
277 'AfterBuildFeedLinks': Executed in OutputPage.php after all feed links (atom,
278 rss,...) are created. Can be used to omit specific feeds from being outputted.
279 You must not use this hook to add feeds, use OutputPage::addFeedLink() instead.
280 &$feedLinks: Array of created feed links
281
282 'AfterFinalPageOutput': Nearly at the end of OutputPage::output() but
283 before OutputPage::sendCacheControl() and final ob_end_flush() which
284 will send the buffered output to the client. This allows for last-minute
285 modification of the output within the buffer by using ob_get_clean().
286 $output: The OutputPage object where output() was called
287
288 'AfterImportPage': When a page import is completed.
289 $title: Title under which the revisions were imported
290 $foreignTitle: ForeignTitle object based on data provided by the XML file
291 $revCount: Number of revisions in the XML file
292 $sRevCount: Number of successfully imported revisions
293 $pageInfo: associative array of page information
294
295 'AfterParserFetchFileAndTitle': After an image gallery is formed by Parser,
296 just before adding its HTML to parser output.
297 $parser: Parser object that called the hook
298 $ig: Gallery, an object of one of the gallery classes (inheriting from
299 ImageGalleryBase)
300 &$html: HTML generated by the gallery
301
302 'AlternateEdit': Before checking if a user can edit a page and before showing
303 the edit form ( EditPage::edit() ). This is triggered on &action=edit.
304 $editPage: the EditPage object
305
306 'AlternateEditPreview': Before generating the preview of the page when editing
307 ( EditPage::getPreviewText() ).
308 Return false and set $previewHTML and $parserOutput to output custom page
309 preview HTML.
310 $editPage: the EditPage object
311 &$content: the Content object for the text field from the edit page
312 &$previewHTML: Text to be placed into the page for the preview
313 &$parserOutput: the ParserOutput object for the preview
314
315 'AlternateUserMailer': Called before mail is sent so that mail could be logged
316 (or something else) instead of using PEAR or PHP's mail(). Return false to skip
317 the regular method of sending mail. Return a string to return a php-mail-error
318 message containing the error. Returning true will continue with sending email
319 in the regular way.
320 $headers: Associative array of headers for the email
321 $to: MailAddress object or array
322 $from: From address
323 $subject: Subject of the email
324 $body: Body of the message
325
326 'AncientPagesQuery': Allow extensions to modify the query used by
327 Special:AncientPages.
328 &$tables: tables to join in the query
329 &$conds: conditions for the query
330 &$joinConds: join conditions for the query
331
332 'APIAfterExecute': After calling the execute() method of an API module. Use
333 this to extend core API modules.
334 &$module: Module object
335
336 'ApiBeforeMain': Before calling ApiMain's execute() method in api.php.
337 &$main: ApiMain object
338
339 'ApiCheckCanExecute': Called during ApiMain::checkCanExecute. Use to further
340 authenticate and authorize API clients before executing the module. Return
341 false and set a message to cancel the request.
342 $module: Module object
343 $user: Current user
344 &$message: API message to die with. Specific values accepted depend on the
345 MediaWiki version:
346 * 1.29+: IApiMessage, Message, string message key, or key+parameters array to
347 pass to ApiBase::dieWithError().
348 * 1.27+: IApiMessage, or a key or key+parameters in ApiBase::$messageMap.
349 * Earlier: A key or key+parameters in ApiBase::$messageMap.
350
351 'ApiDeprecationHelp': Add messages to the 'deprecation-help' warning generated
352 from ApiBase::addDeprecation().
353 &$msgs: Message[] Messages to include in the help. Multiple messages will be
354 joined with spaces.
355
356 'ApiFeedContributions::feedItem': Called to convert the result of ContribsPager
357 into a FeedItem instance that ApiFeedContributions can consume. Implementors of
358 this hook may cancel the hook to signal that the item is not viewable in the
359 provided context.
360 $row: A row of data from ContribsPager. The set of data returned by
361 ContribsPager can be adjusted by handling the ContribsPager::reallyDoQuery
362 hook.
363 $context: An IContextSource implementation.
364 &$feedItem: Set this to a FeedItem instance if the callback can handle the
365 provided row. This is provided to the hook as a null, if it is non null then
366 another callback has already handled the hook.
367
368 'ApiFormatHighlight': Use to syntax-highlight API pretty-printed output. When
369 highlighting, add output to $context->getOutput() and return false.
370 $context: An IContextSource.
371 $text: Text to be highlighted.
372 $mime: MIME type of $text.
373 $format: API format code for $text.
374
375 'APIGetAllowedParams': Use this hook to modify a module's parameters.
376 &$module: ApiBase Module object
377 &$params: Array of parameters
378 $flags: int zero or OR-ed flags like ApiBase::GET_VALUES_FOR_HELP
379
380 'APIGetDescriptionMessages': Use this hook to modify a module's help message.
381 $module: ApiBase Module object
382 &$msg: Array of Message objects
383
384 'APIGetParamDescriptionMessages': Use this hook to modify a module's parameter
385 descriptions.
386 $module: ApiBase Module object
387 &$msg: Array of arrays of Message objects
388
389 'APIHelpModifyOutput': Use this hook to modify an API module's help output.
390 $module: ApiBase Module object
391 &$help: Array of HTML strings to be joined for the output.
392 $options: Array Options passed to ApiHelp::getHelp
393 &$tocData: Array If a TOC is being generated, this array has keys as anchors in
394 the page and values as for Linker::generateTOC().
395
396 'ApiMain::moduleManager': Called when ApiMain has finished initializing its
397 module manager. Can be used to conditionally register API modules.
398 $moduleManager: ApiModuleManager Module manager instance
399
400 'ApiMain::onException': Called by ApiMain::executeActionWithErrorHandling() when
401 an exception is thrown during API action execution.
402 $apiMain: Calling ApiMain instance.
403 $e: Exception object.
404
405 'ApiMakeParserOptions': Called from ApiParse and ApiExpandTemplates to allow
406 extensions to adjust the ParserOptions before parsing.
407 $options: ParserOptions object
408 $title: Title to be parsed
409 $params: Parameter array for the API module
410 $module: API module (which is also a ContextSource)
411 &$reset: Set to a ScopedCallback used to reset any hooks after the parse is done.
412 &$suppressCache: Set true if cache should be suppressed.
413
414 'ApiOpenSearchSuggest': Called when constructing the OpenSearch results. Hooks
415 can alter or append to the array.
416 &$results: array with integer keys to associative arrays. Keys in associative
417 array:
418 - title: Title object.
419 - redirect from: Title or null.
420 - extract: Description for this result.
421 - extract trimmed: If truthy, the extract will not be trimmed to
422 $wgOpenSearchDescriptionLength.
423 - image: Thumbnail for this result. Value is an array with subkeys 'source'
424 (url), 'width', 'height', 'alt', 'align'.
425 - url: Url for the given title.
426
427 'ApiOptions': Called by action=options before applying changes to user
428 preferences.
429 $apiModule: Calling ApiOptions object
430 $user: User object whose preferences are being changed
431 $changes: Associative array of preference name => value
432 $resetKinds: Array of strings specifying which options kinds to reset.
433 See User::resetOptions() and User::getOptionKinds() for possible
434 values.
435
436 'ApiParseMakeOutputPage': Called when preparing the OutputPage object for
437 ApiParse. This is mainly intended for calling OutputPage::addContentOverride()
438 or OutputPage::addContentOverrideCallback().
439 $module: ApiBase (which is also a ContextSource)
440 $output: OutputPage
441
442 'ApiQuery::moduleManager': Called when ApiQuery has finished initializing its
443 module manager. Can be used to conditionally register API query modules.
444 $moduleManager: ApiModuleManager Module manager instance
445
446 'APIQueryAfterExecute': After calling the execute() method of an
447 action=query submodule. Use this to extend core API modules.
448 &$module: Module object
449
450 'ApiQueryBaseAfterQuery': Called for (some) API query modules after the
451 database query has returned. An API query module wanting to use this hook
452 should see the ApiQueryBase::select() and ApiQueryBase::processRow()
453 documentation.
454 $module: ApiQueryBase module in question
455 $result: ResultWrapper|bool returned from the IDatabase::select()
456 &$hookData: array that was passed to the 'ApiQueryBaseBeforeQuery' hook and
457 will be passed to the 'ApiQueryBaseProcessRow' hook, intended for inter-hook
458 communication.
459
460 'ApiQueryBaseBeforeQuery': Called for (some) API query modules before a
461 database query is made. WARNING: It would be very easy to misuse this hook and
462 break the module! Any joins added *must* join on a unique key of the target
463 table unless you really know what you're doing. An API query module wanting to
464 use this hook should see the ApiQueryBase::select() and
465 ApiQueryBase::processRow() documentation.
466 $module: ApiQueryBase module in question
467 &$tables: array of tables to be queried
468 &$fields: array of columns to select
469 &$conds: array of WHERE conditionals for query
470 &$query_options: array of options for the database request
471 &$join_conds: join conditions for the tables
472 &$hookData: array that will be passed to the 'ApiQueryBaseAfterQuery' and
473 'ApiQueryBaseProcessRow' hooks, intended for inter-hook communication.
474
475 'ApiQueryBaseProcessRow': Called for (some) API query modules as each row of
476 the database result is processed. Return false to stop processing the result
477 set. An API query module wanting to use this hook should see the
478 ApiQueryBase::select() and ApiQueryBase::processRow() documentation.
479 $module: ApiQueryBase module in question
480 $row: stdClass Database result row
481 &$data: array to be included in the ApiResult.
482 &$hookData: array that was be passed to the 'ApiQueryBaseBeforeQuery' and
483 'ApiQueryBaseAfterQuery' hooks, intended for inter-hook communication.
484
485 'APIQueryGeneratorAfterExecute': After calling the executeGenerator() method of
486 an action=query submodule. Use this to extend core API modules.
487 &$module: Module object
488 &$resultPageSet: ApiPageSet object
489
490 'APIQueryInfoTokens': DEPRECATED since 1.24! Use ApiQueryTokensRegisterTypes
491 instead. Use this hook to add custom tokens to prop=info. Every token has an
492 action, which will be used in the intoken parameter and in the output
493 (actiontoken="..."), and a callback function which should return the token, or
494 false if the user isn't allowed to obtain it. The prototype of the callback
495 function is func($pageid, $title), where $pageid is the page ID of the page the
496 token is requested for and $title is the associated Title object. In the hook,
497 just add your callback to the $tokenFunctions array and return true (returning
498 false makes no sense).
499 &$tokenFunctions: [ action => callback ]
500
501 'APIQueryRecentChangesTokens': DEPRECATED since 1.24! Use
502 ApiQueryTokensRegisterTypes instead.
503 Use this hook to add custom tokens to list=recentchanges. Every token has an
504 action, which will be used in the rctoken parameter and in the output
505 (actiontoken="..."), and a callback function which should return the token, or
506 false if the user isn't allowed to obtain it. The prototype of the callback
507 function is func($pageid, $title, $rc), where $pageid is the page ID of the
508 page associated to the revision the token is requested for, $title the
509 associated Title object and $rc the associated RecentChange object. In the
510 hook, just add your callback to the $tokenFunctions array and return true
511 (returning false makes no sense).
512 &$tokenFunctions: [ action => callback ]
513
514 'APIQueryRevisionsTokens': DEPRECATED since 1.24! Use
515 ApiQueryTokensRegisterTypes instead.
516 Use this hook to add custom tokens to prop=revisions. Every token has an
517 action, which will be used in the rvtoken parameter and in the output
518 (actiontoken="..."), and a callback function which should return the token, or
519 false if the user isn't allowed to obtain it. The prototype of the callback
520 function is func($pageid, $title, $rev), where $pageid is the page ID of the
521 page associated to the revision the token is requested for, $title the
522 associated Title object and $rev the associated Revision object. In the hook,
523 just add your callback to the $tokenFunctions array and return true (returning
524 false makes no sense).
525 &$tokenFunctions: [ action => callback ]
526
527 'APIQuerySiteInfoGeneralInfo': Use this hook to add extra information to the
528 sites general information.
529 $module: the current ApiQuerySiteInfo module
530 &$results: array of results, add things here
531
532 'APIQuerySiteInfoStatisticsInfo': Use this hook to add extra information to the
533 sites statistics information.
534 &$results: array of results, add things here
535
536 'ApiQueryTokensRegisterTypes': Use this hook to add additional token types to
537 action=query&meta=tokens. Note that most modules will probably be able to use
538 the 'csrf' token instead of creating their own token types.
539 &$salts: [ type => salt to pass to User::getEditToken(), or array of salt
540 and key to pass to Session::getToken() ]
541
542 'APIQueryUsersTokens': DEPRECATED since 1.24! Use ApiQueryTokensRegisterTypes
543 instead.
544 Use this hook to add custom token to list=users. Every token has an action,
545 which will be used in the ustoken parameter and in the output
546 (actiontoken="..."), and a callback function which should return the token, or
547 false if the user isn't allowed to obtain it. The prototype of the callback
548 function is func($user) where $user is the User object. In the hook, just add
549 your callback to the $tokenFunctions array and return true (returning false
550 makes no sense).
551 &$tokenFunctions: [ action => callback ]
552
553 'ApiQueryWatchlistExtractOutputData': Extract row data for ApiQueryWatchlist.
554 $module: ApiQueryWatchlist instance
555 $watchedItem: WatchedItem instance
556 $recentChangeInfo: Array of recent change info data
557 &$vals: Associative array of data to be output for the row
558
559 'ApiQueryWatchlistPrepareWatchedItemQueryServiceOptions': Populate the options
560 to be passed from ApiQueryWatchlist to WatchedItemQueryService.
561 $module: ApiQueryWatchlist instance
562 $params: Array of parameters, as would be returned by $module->extractRequestParams()
563 &$options: Array of options for WatchedItemQueryService::getWatchedItemsWithRecentChangeInfo()
564
565 'ApiRsdServiceApis': Add or remove APIs from the RSD services list. Each service
566 should have its own entry in the $apis array and have a unique name, passed as
567 key for the array that represents the service data. In this data array, the
568 key-value-pair identified by the apiLink key is required.
569 &$apis: array of services
570
571 'ApiTokensGetTokenTypes': DEPRECATED since 1.24! Use ApiQueryTokensRegisterTypes instead.
572 Use this hook to extend action=tokens with new token types.
573 &$tokenTypes: supported token types in format 'type' => callback function
574 used to retrieve this type of tokens.
575
576 'ApiValidatePassword': Called from ApiValidatePassword.
577 $module: ApiValidatePassword instance.
578 &$r: Result array.
579
580 'Article::MissingArticleConditions': Before fetching deletion & move log entries
581 to display a message of a non-existing page being deleted/moved, give extensions
582 a chance to hide their (unrelated) log entries.
583 &$conds: Array of query conditions (all of which have to be met; conditions will
584 AND in the final query)
585 $logTypes: Array of log types being queried
586
587 'ArticleAfterFetchContentObject': DEPRECATED since 1.32, use ArticleRevisionViewCustom
588 to control output. After fetching content of an article from the database.
589 &$article: the article (object) being loaded from the database
590 &$content: the content of the article, as a Content object
591
592 'ArticleConfirmDelete': Before writing the confirmation form for article
593 deletion.
594 $article: the article (object) being deleted
595 $output: the OutputPage object
596 &$reason: the reason (string) the article is being deleted
597
598 'ArticleContentOnDiff': Before showing the article content below a diff. Use
599 this to change the content in this area or how it is loaded.
600 $diffEngine: the DifferenceEngine
601 $output: the OutputPage object
602
603 'ArticleRevisionViewCustom': Allows custom rendering of an article's content.
604 Note that it is preferable to implement proper handing for a custom data type using
605 the ContentHandler facility.
606 $revision: content of the page, as a RevisionRecord object, or null if the revision
607 could not be loaded. May also be a fake that wraps content supplied by an extension.
608 $title: title of the page
609 $oldid: the requested revision id, or 0 for the currrent revision.
610 $output: a ParserOutput object
611
612 'ArticleContentViewCustom': DEPRECATED since 1.32, use ArticleRevisionViewCustom instead,
613 or provide an appropriate ContentHandler. Allows to output the text of the article in a
614 different format than wikitext.
615 $content: content of the page, as a Content object
616 $title: title of the page
617 $output: a ParserOutput object
618
619 'ArticleDelete': Before an article is deleted.
620 &$wikiPage: the WikiPage (object) being deleted
621 &$user: the user (object) deleting the article
622 &$reason: the reason (string) the article is being deleted
623 &$error: if the deletion was prohibited, the (raw HTML) error message to display
624 (added in 1.13)
625 &$status: Status object, modify this to throw an error. Overridden by $error
626 (added in 1.20)
627 $suppress: Whether this is a suppression deletion or not (added in 1.27)
628
629 'ArticleDeleteAfterSuccess': Output after an article has been deleted.
630 $title: Title of the article that has been deleted.
631 $outputPage: OutputPage that can be used to append the output.
632
633 'ArticleDeleteComplete': After an article is deleted.
634 &$wikiPage: the WikiPage that was deleted
635 &$user: the user that deleted the article
636 $reason: the reason the article was deleted
637 $id: id of the article that was deleted
638 $content: the Content of the deleted page (or null, when deleting a broken page)
639 $logEntry: the ManualLogEntry used to record the deletion
640 $archivedRevisionCount: the number of revisions archived during the deletion
641
642 'ArticleEditUpdateNewTalk': Before updating user_newtalk when a user talk page
643 was changed.
644 &$wikiPage: WikiPage (object) of the user talk page
645 $recipient: User (object) who's talk page was edited
646
647 'ArticleEditUpdates': When edit updates (mainly link tracking) are made when an
648 article has been changed.
649 &$wikiPage: the WikiPage (object)
650 &$editInfo: data holder that includes the parser output ($editInfo->output) for
651 that page after the change
652 $changed: bool for if the page was changed
653
654 'ArticleEditUpdatesDeleteFromRecentchanges': Before deleting old entries from
655 recentchanges table, return false to not delete old entries.
656 &$wikiPage: WikiPage (object) being modified
657
658 'ArticleFromTitle': when creating an article object from a title object using
659 Wiki::articleFromTitle().
660 &$title: Title (object) used to create the article object
661 &$article: Article (object) that will be returned
662 $context: IContextSource (object)
663
664 'ArticleMergeComplete': After merging to article using Special:Mergehistory.
665 $targetTitle: target title (object)
666 $destTitle: destination title (object)
667
668 'ArticlePageDataAfter': After loading data of an article from the database.
669 &$wikiPage: WikiPage (object) whose data were loaded
670 &$row: row (object) returned from the database server
671
672 'ArticlePageDataBefore': Before loading data of an article from the database.
673 &$wikiPage: WikiPage (object) that data will be loaded
674 &$fields: fields (array) to load from the database
675 &$tables: tables (array) to load from the database
676 &$joinConds: join conditions (array) to load from the database
677
678 'ArticlePrepareTextForEdit': Called when preparing text to be saved.
679 $wikiPage: the WikiPage being saved
680 $popts: parser options to be used for pre-save transformation
681
682 'ArticleProtect': Before an article is protected.
683 &$wikiPage: the WikiPage being protected
684 &$user: the user doing the protection
685 $protect: Set of restriction keys
686 $reason: Reason for protect
687
688 'ArticleProtectComplete': After an article is protected.
689 &$wikiPage: the WikiPage that was protected
690 &$user: the user who did the protection
691 $protect: Set of restriction keys
692 $reason: Reason for protect
693
694 'ArticlePurge': Before executing "&action=purge".
695 &$wikiPage: WikiPage (object) to purge
696
697 'ArticleRevisionUndeleted': After an article revision is restored.
698 &$title: the article title
699 $revision: the revision
700 $oldPageID: the page ID of the revision when archived (may be null)
701
702 'ArticleRevisionVisibilitySet': Called when changing visibility of one or more
703 revisions of an article.
704 $title: Title object of the article
705 $ids: Ids to set the visibility for
706 $visibilityChangeMap: Map of revision id to oldBits and newBits. This array can be
707 examined to determine exactly what visibility bits have changed for each
708 revision. This array is of the form
709 [id => ['oldBits' => $oldBits, 'newBits' => $newBits], ... ]
710
711 'ArticleRollbackComplete': After an article rollback is completed.
712 $wikiPage: the WikiPage that was edited
713 $user: the user who did the rollback
714 $revision: the revision the page was reverted back to
715 $current: the reverted revision
716
717 'ArticleShowPatrolFooter': Called at the beginning of Article#showPatrolFooter.
718 Extensions can use this to not show the [mark as patrolled] link in certain
719 circumstances.
720 $article: the Article object
721
722 'ArticleUndelete': When one or more revisions of an article are restored.
723 &$title: Title corresponding to the article restored
724 $create: Whether or not the restoration caused the page to be created (i.e. it
725 didn't exist before).
726 $comment: The comment associated with the undeletion.
727 $oldPageId: ID of page previously deleted (from archive table). This ID will be used
728 for the restored page.
729 $restoredPages: Set of page IDs that have revisions restored for this undelete,
730 with keys being page IDs and values are 'true'.
731
732 'ArticleUndeleteLogEntry': When a log entry is generated but not yet saved.
733 $pageArchive: the PageArchive object
734 &$logEntry: ManualLogEntry object
735 $user: User who is performing the log action
736
737 'ArticleUpdateBeforeRedirect': After a page is updated (usually on save), before
738 the user is redirected back to the page.
739 $article: the article
740 &$sectionanchor: The section anchor link (e.g. "#overview" )
741 &$extraq: Extra query parameters which can be added via hooked functions
742
743 'ArticleViewFooter': After showing the footer section of an ordinary page view
744 $article: Article object
745 $patrolFooterShown: boolean whether patrol footer is shown
746
747 'ArticleViewHeader': Control article output. Called before the parser cache is about
748 to be tried for article viewing.
749 &$article: the article
750 &$pcache: whether to try the parser cache or not
751 &$outputDone: whether the output for this page finished or not. Set to
752 a ParserOutput object to both indicate that the output is done and what
753 parser output was used.
754
755 'ArticleViewRedirect': Before setting "Redirected from ..." subtitle when a
756 redirect was followed.
757 &$article: target article (object)
758
759 'AuthChangeFormFields': After converting a field information array obtained
760 from a set of AuthenticationRequest classes into a form descriptor; hooks
761 can tweak the array to change how login etc. forms should look.
762 $requests: array of AuthenticationRequests the fields are created from
763 $fieldInfo: field information array (union of all
764 AuthenticationRequest::getFieldInfo() responses).
765 &$formDescriptor: HTMLForm descriptor. The special key 'weight' can be set
766 to change the order of the fields.
767 $action: one of the AuthManager::ACTION_* constants.
768
769 'AuthManagerLoginAuthenticateAudit': A login attempt either succeeded or failed
770 for a reason other than misconfiguration or session loss. No return data is
771 accepted; this hook is for auditing only.
772 $response: The MediaWiki\Auth\AuthenticationResponse in either a PASS or FAIL
773 state.
774 $user: The User object being authenticated against, or null if authentication
775 failed before getting that far.
776 $username: A guess at the user name being authenticated, or null if we can't
777 even determine that. When $user is not null, it can be in the form of
778 <username>@<more info> (e.g. for bot passwords).
779 $extraData: An array (string => string) with extra information, intended to be
780 added to log contexts. Fields it might include:
781 - appId: the application ID, only if the login was with a bot password
782
783 'AutopromoteCondition': Check autopromote condition for user.
784 $type: condition type
785 $args: arguments
786 $user: user
787 &$result: result of checking autopromote condition
788
789 'BacklinkCacheGetConditions': Allows to set conditions for query when links to
790 certain title are fetched.
791 $table: table name
792 $title: title of the page to which backlinks are sought
793 &$conds: query conditions
794
795 'BacklinkCacheGetPrefix': Allows to set prefix for a specific link table.
796 $table: table name
797 &$prefix: prefix
798
799 'BadImage': When checking against the bad image list. Change $bad and return
800 false to override. If an image is "bad", it is not rendered inline in wiki
801 pages or galleries in category pages.
802 $name: Image name being checked
803 &$bad: Whether or not the image is "bad"
804
805 'BaseTemplateAfterPortlet': After output of portlets, allow injecting
806 custom HTML after the section. Any uses of the hook need to handle escaping.
807 $template: BaseTemplate
808 $portlet: string portlet name
809 &$html: string
810
811 'BaseTemplateToolbox': Called by BaseTemplate when building the $toolbox array
812 and returning it for the skin to output. You can add items to the toolbox while
813 still letting the skin make final decisions on skin-specific markup conventions
814 using this hook.
815 &$sk: The BaseTemplate base skin template
816 &$toolbox: An array of toolbox items, see BaseTemplate::getToolbox and
817 BaseTemplate::makeListItem for details on the format of individual items
818 inside of this array.
819
820 'BeforeDisplayNoArticleText': Before displaying message key "noarticletext" or
821 "noarticletext-nopermission" at Article::showMissingArticle().
822 $article: article object
823
824 'BeforeHttpsRedirect': Prior to forcing HTTP->HTTPS redirect. Gives a chance to
825 override how the redirect is output by modifying, or by returning false, and
826 letting standard HTTP rendering take place.
827 ATTENTION: This hook is likely to be removed soon due to overall design of the
828 system.
829 $context: IContextSource object
830 &$redirect: string URL, modifiable
831
832 'BeforeInitialize': Before anything is initialized in
833 MediaWiki::performRequest().
834 &$title: Title being used for request
835 &$unused: null
836 &$output: OutputPage object
837 &$user: User
838 $request: WebRequest object
839 $mediaWiki: Mediawiki object
840
841 'BeforePageDisplay': Prior to outputting a page.
842 &$out: OutputPage object
843 &$skin: Skin object
844
845 'BeforePageRedirect': Prior to sending an HTTP redirect. Gives a chance to
846 override how the redirect is output by modifying, or by returning false and
847 taking over the output.
848 $out: OutputPage object
849 &$redirect: URL, modifiable
850 &$code: HTTP code (eg '301' or '302'), modifiable
851
852 'BeforeParserFetchFileAndTitle': Before an image is rendered by Parser.
853 $parser: Parser object
854 $nt: the image title
855 &$options: array of options to RepoGroup::findFile. If it contains 'broken'
856 as a key then the file will appear as a broken thumbnail.
857 &$descQuery: query string to add to thumbnail URL
858
859 'BeforeParserFetchTemplateAndtitle': Before a template is fetched by Parser.
860 $parser: Parser object
861 $title: title of the template
862 &$skip: skip this template and link it?
863 &$id: the id of the revision being parsed
864
865 'BeforeParserrenderImageGallery': Before an image gallery is rendered by Parser.
866 &$parser: Parser object
867 &$ig: ImageGallery object
868
869 'BeforeWelcomeCreation': Before the welcomecreation message is displayed to a
870 newly created user.
871 &$welcome_creation_msg: MediaWiki message name to display on the welcome screen
872 to a newly created user account.
873 &$injected_html: Any HTML to inject after the "logged in" message of a newly
874 created user account
875
876 'BitmapHandlerCheckImageArea': By BitmapHandler::normaliseParams, after all
877 normalizations have been performed, except for the $wgMaxImageArea check.
878 $image: File
879 &$params: Array of parameters
880 &$checkImageAreaHookResult: null, set to true or false to override the
881 $wgMaxImageArea check result.
882
883 'BitmapHandlerTransform': before a file is transformed, gives extension the
884 possibility to transform it themselves
885 $handler: BitmapHandler
886 $image: File
887 &$scalerParams: Array with scaler parameters
888 &$mto: null, set to a MediaTransformOutput
889
890 'BlockIp': Before an IP address or user is blocked.
891 &$block: the Block object about to be saved
892 &$user: the user _doing_ the block (not the one being blocked)
893 &$reason: if the hook is aborted, the error message to be returned in an array
894
895 'BlockIpComplete': After an IP address or user is blocked.
896 $block: the Block object that was saved
897 $user: the user who did the block (not the one being blocked)
898 $priorBlock: the Block object for the prior block or null if there was none
899
900 'BookInformation': Before information output on Special:Booksources.
901 $isbn: ISBN to show information for
902 $output: OutputPage object in use
903
904 'CanIPUseHTTPS': Determine whether the client at a given source IP is likely
905 to be able to access the wiki via HTTPS.
906 $ip: The IP address in human-readable form
907 &$canDo: This reference should be set to false if the client may not be able
908 to use HTTPS
909
910 'CanonicalNamespaces': For extensions adding their own namespaces or altering
911 the defaults.
912 Note that if you need to specify namespace protection or content model for
913 a namespace that is added in a CanonicalNamespaces hook handler, you
914 should do so by altering $wgNamespaceProtection and
915 $wgNamespaceContentModels outside the handler, in top-level scope. The
916 point at which the CanonicalNamespaces hook fires is too late for altering
917 these variables. This applies even if the namespace addition is
918 conditional; it is permissible to declare a content model and protection
919 for a namespace and then decline to actually register it.
920 &$namespaces: Array of namespace numbers with corresponding canonical names
921
922 'CategoryAfterPageAdded': After a page is added to a category.
923 $category: Category that page was added to
924 $wikiPage: WikiPage that was added
925
926 'CategoryAfterPageRemoved': After a page is removed from a category.
927 $category: Category that page was removed from
928 $wikiPage: WikiPage that was removed
929 $id: the page ID (original ID in case of page deletions)
930
931 'CategoryPageView': Before viewing a categorypage in CategoryPage::view.
932 &$catpage: CategoryPage instance
933
934 'CategoryViewer::doCategoryQuery': After querying for pages to be displayed
935 in a Category page. Gives extensions the opportunity to batch load any
936 related data about the pages.
937 $type: The category type. Either 'page', 'file' or 'subcat'
938 $res: Query result from Wikimedia\Rdbms\IDatabase::select()
939
940 'CategoryViewer::generateLink': Before generating an output link allow
941 extensions opportunity to generate a more specific or relevant link.
942 $type: The category type. Either 'page', 'img' or 'subcat'
943 $title: Title object for the categorized page
944 $html: Requested html content of anchor
945 &$link: Returned value. When set to a non-null value by a hook subscriber
946 this value will be used as the anchor instead of Linker::link
947
948 'ChangeAuthenticationDataAudit': Called when user changes his password.
949 No return data is accepted; this hook is for auditing only.
950 $req: AuthenticationRequest object describing the change (and target user)
951 $status: StatusValue with the result of the action
952
953 'ChangesListInitRows': Batch process change list rows prior to rendering.
954 $changesList: ChangesList instance
955 $rows: The data that will be rendered. May be a \Wikimedia\Rdbms\IResultWrapper
956 instance or an array.
957
958 'ChangesListInsertArticleLink': Override or augment link to article in RC list.
959 &$changesList: ChangesList instance.
960 &$articlelink: HTML of link to article (already filled-in).
961 &$s: HTML of row that is being constructed.
962 &$rc: RecentChange instance.
963 $unpatrolled: Whether or not we are showing unpatrolled changes.
964 $watched: Whether or not the change is watched by the user.
965
966 'ChangesListSpecialPageQuery': Called when building SQL query on pages
967 inheriting from ChangesListSpecialPage (in core: RecentChanges,
968 RecentChangesLinked and Watchlist).
969 Do not use this to implement individual filters if they are compatible with the
970 ChangesListFilter and ChangesListFilterGroup structure.
971 Instead, use sub-classes of those classes, in conjunction with the
972 ChangesListSpecialPageStructuredFilters hook.
973 This hook can be used to implement filters that do not implement that structure,
974 or custom behavior that is not an individual filter.
975 $name: name of the special page, e.g. 'Watchlist'
976 &$tables: array of tables to be queried
977 &$fields: array of columns to select
978 &$conds: array of WHERE conditionals for query
979 &$query_options: array of options for the database request
980 &$join_conds: join conditions for the tables
981 $opts: FormOptions for this request
982
983 'ChangesListSpecialPageStructuredFilters': Called to allow extensions to register
984 filters for pages inheriting from ChangesListSpecialPage (in core: RecentChanges,
985 RecentChangesLinked, and Watchlist). Generally, you will want to construct
986 new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects.
987 When constructing them, you specify which group they belong to. You can reuse
988 existing groups (accessed through $special->getFilterGroup), or create your own
989 (ChangesListBooleanFilterGroup or ChangesListStringOptionsFilterGroup).
990 If you create new groups, you must register them with $special->registerFilterGroup.
991 Note that this is called regardless of whether the user is currently using
992 the new (structured) or old (unstructured) filter UI. If you want your boolean
993 filter to show on both the new and old UI, specify all the supported fields.
994 These include showHide, label, and description.
995 See the constructor of each ChangesList* class for documentation of supported
996 fields.
997 $special: ChangesListSpecialPage instance
998
999 'ChangeTagAfterDelete': Called after a change tag has been deleted (that is,
1000 removed from all revisions and log entries to which it was applied). This gives
1001 extensions a chance to take it off their books.
1002 $tag: name of the tag
1003 &$status: Status object. Add warnings to this as required. There is no point
1004 setting errors, as the deletion has already been partly carried out by this
1005 point.
1006
1007 'ChangeTagCanCreate': Tell whether a change tag should be able to be created
1008 from the UI (Special:Tags) or via the API. You could use this hook if you want
1009 to reserve a specific "namespace" of tags, or something similar.
1010 $tag: name of the tag
1011 $user: user initiating the action
1012 &$status: Status object. Add your errors using `$status->fatal()` or warnings
1013 using `$status->warning()`. Errors and warnings will be relayed to the user.
1014 If you set an error, the user will be unable to create the tag.
1015
1016 'ChangeTagCanDelete': Tell whether a change tag should be able to be
1017 deleted from the UI (Special:Tags) or via the API. The default is that tags
1018 defined using the ListDefinedTags hook are not allowed to be deleted unless
1019 specifically allowed. If you wish to allow deletion of the tag, set
1020 `$status = Status::newGood()` to allow deletion, and then `return false` from
1021 the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry
1022 out custom deletion actions.
1023 $tag: name of the tag
1024 $user: user initiating the action
1025 &$status: Status object. See above.
1026
1027 'ChangeTagsListActive': Allows you to nominate which of the tags your extension
1028 uses are in active use.
1029 &$tags: list of all active tags. Append to this array.
1030
1031 'ChangeTagsAfterUpdateTags': Called after tags have been updated with the
1032 ChangeTags::updateTags function. Params:
1033 $addedTags: tags effectively added in the update
1034 $removedTags: tags effectively removed in the update
1035 $prevTags: tags that were present prior to the update
1036 $rc_id: recentchanges table id
1037 $rev_id: revision table id
1038 $log_id: logging table id
1039 $params: tag params
1040 $rc: RecentChange being tagged when the tagging accompanies the action, or null
1041 $user: User who performed the tagging when the tagging is subsequent to the
1042 action, or null
1043
1044 'ChangeTagsAllowedAdd': Called when checking if a user can add tags to a change.
1045 &$allowedTags: List of all the tags the user is allowed to add. Any tags the
1046 user wants to add ($addTags) that are not in this array will cause it to fail.
1047 You may add or remove tags to this array as required.
1048 $addTags: List of tags user intends to add.
1049 $user: User who is adding the tags.
1050
1051 'ChangeUserGroups': Called before user groups are changed.
1052 $performer: The User who will perform the change
1053 $user: The User whose groups will be changed
1054 &$add: The groups that will be added
1055 &$remove: The groups that will be removed
1056
1057 'Collation::factory': Called if $wgCategoryCollation is an unknown collation.
1058 $collationName: Name of the collation in question
1059 &$collationObject: Null. Replace with a subclass of the Collation class that
1060 implements the collation given in $collationName.
1061
1062 'ConfirmEmailComplete': Called after a user's email has been confirmed
1063 successfully.
1064 $user: user (object) whose email is being confirmed
1065
1066 'ContentAlterParserOutput': Modify parser output for a given content object.
1067 Called by Content::getParserOutput after parsing has finished. Can be used
1068 for changes that depend on the result of the parsing but have to be done
1069 before LinksUpdate is called (such as adding tracking categories based on
1070 the rendered HTML).
1071 $content: The Content to render
1072 $title: Title of the page, as context
1073 $parserOutput: ParserOutput to manipulate
1074
1075 'ContentGetParserOutput': Customize parser output for a given content object,
1076 called by AbstractContent::getParserOutput. May be used to override the normal
1077 model-specific rendering of page content.
1078 $content: The Content to render
1079 $title: Title of the page, as context
1080 $revId: The revision ID, as context
1081 $options: ParserOptions for rendering. To avoid confusing the parser cache,
1082 the output can only depend on parameters provided to this hook function, not
1083 on global state.
1084 $generateHtml: boolean, indicating whether full HTML should be generated. If
1085 false, generation of HTML may be skipped, but other information should still
1086 be present in the ParserOutput object.
1087 &$output: ParserOutput, to manipulate or replace
1088
1089 'ContentHandlerDefaultModelFor': Called when the default content model is
1090 determined for a given title. May be used to assign a different model for that
1091 title.
1092 $title: the Title in question
1093 &$model: the model name. Use with CONTENT_MODEL_XXX constants.
1094
1095 'ContentHandlerForModelID': Called when a ContentHandler is requested for
1096 a given content model name, but no entry for that model exists in
1097 $wgContentHandlers.
1098 Note: if your extension implements additional models via this hook, please
1099 use GetContentModels hook to make them known to core.
1100 $modeName: the requested content model name
1101 &$handler: set this to a ContentHandler object, if desired.
1102
1103 'ContentModelCanBeUsedOn': Called to determine whether that content model can
1104 be used on a given page. This is especially useful to prevent some content
1105 models to be used in some special location.
1106 $contentModel: ID of the content model in question
1107 $title: the Title in question.
1108 &$ok: Output parameter, whether it is OK to use $contentModel on $title.
1109 Handler functions that modify $ok should generally return false to prevent
1110 further hooks from further modifying $ok.
1111
1112 'ContribsPager::getQueryInfo': Before the contributions query is about to run
1113 &$pager: Pager object for contributions
1114 &$queryInfo: The query for the contribs Pager
1115
1116 'ContribsPager::reallyDoQuery': Called before really executing the query for My
1117 Contributions
1118 &$data: an array of results of all contribs queries
1119 $pager: The ContribsPager object hooked into
1120 $offset: Index offset, inclusive
1121 $limit: Exact query limit
1122 $descending: Query direction, false for ascending, true for descending
1123
1124 'ContributionsLineEnding': Called before a contributions HTML line is finished
1125 $page: SpecialPage object for contributions
1126 &$ret: the HTML line
1127 $row: the DB row for this line
1128 &$classes: the classes to add to the surrounding <li>
1129 &$attribs: associative array of other HTML attributes for the <li> element.
1130 Currently only data attributes reserved to MediaWiki are allowed
1131 (see Sanitizer::isReservedDataAttribute).
1132
1133 'ContributionsToolLinks': Change tool links above Special:Contributions
1134 $id: User identifier
1135 $title: User page title
1136 &$tools: Array of tool links
1137 $specialPage: SpecialPage instance for context and services. Can be either
1138 SpecialContributions or DeletedContributionsPage. Extensions should type
1139 hint against a generic SpecialPage though.
1140
1141 'ConvertContent': Called by AbstractContent::convert when a conversion to
1142 another content model is requested.
1143 Handler functions that modify $result should generally return false to disable
1144 further attempts at conversion.
1145 $content: The Content object to be converted.
1146 $toModel: The ID of the content model to convert to.
1147 $lossy: boolean indicating whether lossy conversion is allowed.
1148 &$result: Output parameter, in case the handler function wants to provide a
1149 converted Content object. Note that $result->getContentModel() must return
1150 $toModel.
1151
1152 'ContentSecurityPolicyDefaultSource': Modify the allowed CSP load sources. This
1153 affects all directives except for the script directive. If you want to add a
1154 script source, see ContentSecurityPolicyScriptSource hook.
1155 &$defaultSrc: Array of Content-Security-Policy allowed sources
1156 $policyConfig: Current configuration for the Content-Security-Policy header
1157 $mode: ContentSecurityPolicy::REPORT_ONLY_MODE or
1158 ContentSecurityPolicy::FULL_MODE depending on type of header
1159
1160 'ContentSecurityPolicyDirectives': Modify the content security policy
1161 directives. Use this only if ContentSecurityPolicyDefaultSource and
1162 ContentSecurityPolicyScriptSource do not meet your needs.
1163 &$directives: Array of CSP directives
1164 $policyConfig: Current configuration for the CSP header
1165 $mode: ContentSecurityPolicy::REPORT_ONLY_MODE or
1166 ContentSecurityPolicy::FULL_MODE depending on type of header
1167
1168 'ContentSecurityPolicyScriptSource': Modify the allowed CSP script sources.
1169 Note that you also have to use ContentSecurityPolicyDefaultSource if you
1170 want non-script sources to be loaded from
1171 whatever you add.
1172 &$scriptSrc: Array of CSP directives
1173 $policyConfig: Current configuration for the CSP header
1174 $mode: ContentSecurityPolicy::REPORT_ONLY_MODE or
1175 ContentSecurityPolicy::FULL_MODE depending on type of header
1176
1177 'CustomEditor': When invoking the page editor
1178 Return true to allow the normal editor to be used, or false if implementing
1179 a custom editor, e.g. for a special namespace, etc.
1180 $article: Article being edited
1181 $user: User performing the edit
1182
1183 'DeletedContribsPager::reallyDoQuery': Called before really executing the query
1184 for Special:DeletedContributions
1185 Similar to ContribsPager::reallyDoQuery
1186 &$data: an array of results of all contribs queries
1187 $pager: The DeletedContribsPager object hooked into
1188 $offset: Index offset, inclusive
1189 $limit: Exact query limit
1190 $descending: Query direction, false for ascending, true for descending
1191
1192 'DeletedContributionsLineEnding': Called before a DeletedContributions HTML line
1193 is finished.
1194 Similar to ContributionsLineEnding
1195 $page: SpecialPage object for DeletedContributions
1196 &$ret: the HTML line
1197 $row: the DB row for this line
1198 &$classes: the classes to add to the surrounding <li>
1199 &$attribs: associative array of other HTML attributes for the <li> element.
1200 Currently only data attributes reserved to MediaWiki are allowed
1201 (see Sanitizer::isReservedDataAttribute).
1202
1203 'DeleteUnknownPreferences': Called by the cleanupPreferences.php maintenance
1204 script to build a WHERE clause with which to delete preferences that are not
1205 known about. This hook is used by extensions that have dynamically-named
1206 preferences that should not be deleted in the usual cleanup process. For
1207 example, the Gadgets extension creates preferences prefixed with 'gadget-', and
1208 so anything with that prefix is excluded from the deletion.
1209 &where: An array that will be passed as the $cond parameter to
1210 IDatabase::select() to determine what will be deleted from the user_properties
1211 table.
1212 $db: The IDatabase object, useful for accessing $db->buildLike() etc.
1213
1214 'DifferenceEngineAfterLoadNewText': called in DifferenceEngine::loadNewText()
1215 after the new revision's content has been loaded into the class member variable
1216 $differenceEngine->mNewContent but before returning true from this function.
1217 $differenceEngine: DifferenceEngine object
1218
1219 'DifferenceEngineLoadTextAfterNewContentIsLoaded': called in
1220 DifferenceEngine::loadText() after the new revision's content has been loaded
1221 into the class member variable $differenceEngine->mNewContent but before
1222 checking if the variable's value is null.
1223 This hook can be used to inject content into said class member variable.
1224 $differenceEngine: DifferenceEngine object
1225
1226 'DifferenceEngineMarkPatrolledLink': Allows extensions to change the "mark as
1227 patrolled" link which is shown both on the diff header as well as on the bottom
1228 of a page, usually wrapped in a span element which has class="patrollink".
1229 $differenceEngine: DifferenceEngine object
1230 &$markAsPatrolledLink: The "mark as patrolled" link HTML (string)
1231 $rcid: Recent change ID (rc_id) for this change (int)
1232
1233 'DifferenceEngineMarkPatrolledRCID': Allows extensions to possibly change the
1234 rcid parameter. For example the rcid might be set to zero due to the user being
1235 the same as the performer of the change but an extension might still want to
1236 show it under certain conditions.
1237 &$rcid: rc_id (int) of the change or 0
1238 $differenceEngine: DifferenceEngine object
1239 $change: RecentChange object
1240 $user: User object representing the current user
1241
1242 'DifferenceEngineNewHeader': Allows extensions to change the $newHeader
1243 variable, which contains information about the new revision, such as the
1244 revision's author, whether the revision was marked as a minor edit or not, etc.
1245 $differenceEngine: DifferenceEngine object
1246 &$newHeader: The string containing the various #mw-diff-otitle[1-5] divs, which
1247 include things like revision author info, revision comment, RevisionDelete
1248 link and more
1249 $formattedRevisionTools: Array containing revision tools, some of which may have
1250 been injected with the DiffRevisionTools hook
1251 $nextlink: String containing the link to the next revision (if any); also
1252 included in $newHeader
1253 $rollback: Rollback link (string) to roll this revision back to the previous
1254 one, if any
1255 $newminor: String indicating if the new revision was marked as a minor edit
1256 $diffOnly: Boolean parameter passed to DifferenceEngine#showDiffPage, indicating
1257 whether we should show just the diff; passed in as a query string parameter to
1258 the various URLs constructed here (i.e. $nextlink)
1259 $rdel: RevisionDelete link for the new revision, if the current user is allowed
1260 to use the RevisionDelete feature
1261 $unhide: Boolean parameter indicating whether to show RevisionDeleted revisions
1262
1263 'DifferenceEngineOldHeader': Allows extensions to change the $oldHeader
1264 variable, which contains information about the old revision, such as the
1265 revision's author, whether the revision was marked as a minor edit or not, etc.
1266 $differenceEngine: DifferenceEngine object
1267 &$oldHeader: The string containing the various #mw-diff-otitle[1-5] divs, which
1268 include things like revision author info, revision comment, RevisionDelete
1269 link and more
1270 $prevlink: String containing the link to the previous revision (if any); also
1271 included in $oldHeader
1272 $oldminor: String indicating if the old revision was marked as a minor edit
1273 $diffOnly: Boolean parameter passed to DifferenceEngine#showDiffPage, indicating
1274 whether we should show just the diff; passed in as a query string parameter to
1275 the various URLs constructed here (i.e. $prevlink)
1276 $ldel: RevisionDelete link for the old revision, if the current user is allowed
1277 to use the RevisionDelete feature
1278 $unhide: Boolean parameter indicating whether to show RevisionDeleted revisions
1279
1280 'DifferenceEngineOldHeaderNoOldRev': Change the $oldHeader variable in cases
1281 when there is no old revision
1282 &$oldHeader: empty string by default
1283
1284 'DifferenceEngineRenderRevisionAddParserOutput': Allows extensions to change the
1285 parser output. Return false to not add parser output via OutputPage's
1286 addParserOutput method.
1287 $differenceEngine: DifferenceEngine object
1288 $out: OutputPage object
1289 $parserOutput: ParserOutput object
1290 $wikiPage: WikiPage object
1291
1292 'DifferenceEngineRenderRevisionShowFinalPatrolLink': An extension can hook into
1293 this hook point and return false to not show the final "mark as patrolled" link
1294 on the bottom of a page.
1295 This hook has no arguments.
1296
1297 'DifferenceEngineShowDiff': Allows extensions to affect the diff text which
1298 eventually gets sent to the OutputPage object.
1299 $differenceEngine: DifferenceEngine object
1300
1301 'DifferenceEngineShowEmptyOldContent': Allows extensions to change the diff
1302 table body (without header) in cases when there is no old revision or the old
1303 and new revisions are identical.
1304 $differenceEngine: DifferenceEngine object
1305
1306 'DifferenceEngineShowDiffPage': Add additional output via the available
1307 OutputPage object into the diff view
1308 $out: OutputPage object
1309
1310 'DifferenceEngineShowDiffPageMaybeShowMissingRevision': called in
1311 DifferenceEngine::showDiffPage() when revision data cannot be loaded.
1312 Return false in order to prevent displaying the missing revision message
1313 (i.e. to prevent DifferenceEngine::showMissingRevision() from being called).
1314 $differenceEngine: DifferenceEngine object
1315
1316 'DiffRevisionTools': Override or extend the revision tools available from the
1317 diff view, i.e. undo, etc.
1318 $newRev: Revision object of the "new" revision
1319 &$links: Array of HTML links
1320 $oldRev: Revision object of the "old" revision (may be null)
1321 $user: Current user object
1322
1323 'DiffViewHeader': Called before diff display
1324 $diff: DifferenceEngine object that's calling
1325 $oldRev: Revision object of the "old" revision (may be null/invalid)
1326 $newRev: Revision object of the "new" revision
1327
1328 'DisplayOldSubtitle': before creating subtitle when browsing old versions of
1329 an article
1330 &$article: article (object) being viewed
1331 &$oldid: oldid (int) being viewed
1332
1333 'EditFilter': Perform checks on an edit
1334 $editor: EditPage instance (object). The edit form (see includes/EditPage.php)
1335 $text: Contents of the edit box
1336 $section: Section being edited
1337 &$error: Error message to return
1338 $summary: Edit summary for page
1339
1340 'EditFilterMergedContent': Post-section-merge edit filter.
1341 This may be triggered by the EditPage or any other facility that modifies page
1342 content. Use the $status object to indicate whether the edit should be allowed,
1343 and to provide a reason for disallowing it. Return false to abort the edit, and
1344 true to continue. Returning true if $status->isOK() returns false means "don't
1345 save but continue user interaction", e.g. show the edit form.
1346 $status->apiHookResult can be set to an array to be returned by api.php
1347 action=edit. This is used to deliver captchas.
1348 $context: object implementing the IContextSource interface.
1349 $content: content of the edit box, as a Content object.
1350 $status: Status object to represent errors, etc.
1351 $summary: Edit summary for page
1352 $user: the User object representing the user whois performing the edit.
1353 $minoredit: whether the edit was marked as minor by the user.
1354
1355 'EditFormInitialText': Allows modifying the edit form when editing existing
1356 pages
1357 $editPage: EditPage object
1358
1359 'EditFormPreloadText': Allows population of the edit form when creating
1360 new pages
1361 &$text: Text to preload with
1362 &$title: Title object representing the page being created
1363
1364 'EditPage::attemptSave': Called before an article is
1365 saved, that is before WikiPage::doEditContent() is called
1366 $editpage_Obj: the current EditPage object
1367
1368 'EditPage::attemptSave:after': Called after an article save attempt
1369 $editpage_Obj: the current EditPage object
1370 $status: the resulting Status object
1371 $resultDetails: Result details array
1372
1373 'EditPage::importFormData': allow extensions to read additional data
1374 posted in the form
1375 Return value is ignored (should always return true)
1376 $editpage: EditPage instance
1377 $request: Webrequest
1378
1379 'EditPage::showEditForm:fields': allows injection of form field into edit form
1380 Return value is ignored (should always return true)
1381 &$editor: the EditPage instance for reference
1382 &$out: an OutputPage instance to write to
1383
1384 'EditPage::showEditForm:initial': before showing the edit form
1385 Return false to halt editing; you'll need to handle error messages, etc.
1386 yourself. Alternatively, modifying $error and returning true will cause the
1387 contents of $error to be echoed at the top of the edit form as wikitext.
1388 Return true without altering $error to allow the edit to proceed.
1389 &$editor: EditPage instance (object)
1390 &$out: an OutputPage instance to write to
1391
1392 'EditPage::showReadOnlyForm:initial': similar to EditPage::showEditForm:initial
1393 but for the read-only 'view source' variant of the edit form.
1394 Return value is ignored (should always return true)
1395 $editor: EditPage instance (object)
1396 &$out: an OutputPage instance to write to
1397
1398 'EditPage::showStandardInputs:options': allows injection of form fields into
1399 the editOptions area
1400 Return value is ignored (should always be true)
1401 $editor: EditPage instance (object)
1402 $out: an OutputPage instance to write to
1403 &$tabindex: HTML tabindex of the last edit check/button
1404
1405 'EditPageBeforeConflictDiff': allows modifying the EditPage object and output
1406 when there's an edit conflict. Return false to halt normal diff output; in
1407 this case you're responsible for computing and outputting the entire "conflict"
1408 part, i.e., the "difference between revisions" and "your text" headers and
1409 sections.
1410 &$editor: EditPage instance
1411 &$out: OutputPage instance
1412
1413 'EditPageBeforeEditButtons': Allows modifying the edit buttons below the
1414 textarea in the edit form.
1415 &$editpage: The current EditPage object
1416 &$buttons: Array of edit buttons "Save", "Preview", "Live", and "Diff"
1417 &$tabindex: HTML tabindex of the last edit check/button
1418
1419 'EditPageBeforeEditToolbar': Allow adding an edit toolbar above the textarea in
1420 the edit form.
1421 &$toolbar: The toolbar HTML, initially an empty `<div id="toolbar"></div>`
1422 Hook subscribers can return false to have no toolbar HTML be loaded.
1423
1424 'EditPageCopyrightWarning': Allow for site and per-namespace customization of
1425 contribution/copyright notice.
1426 $title: title of page being edited
1427 &$msg: localization message name, overridable. Default is either
1428 'copyrightwarning' or 'copyrightwarning2'.
1429
1430 'EditPageGetCheckboxesDefinition': Allows modifying the edit checkboxes
1431 below the textarea in the edit form.
1432 $editpage: The current EditPage object
1433 &$checkboxes: Array of checkbox definitions. See
1434 EditPage::getCheckboxesDefinition() for the format.
1435
1436 'EditPageGetDiffContent': Allow modifying the wikitext that will be used in
1437 "Show changes". Note that it is preferable to implement diff handling for
1438 different data types using the ContentHandler facility.
1439 $editPage: EditPage object
1440 &$newtext: wikitext that will be used as "your version"
1441
1442 'EditPageGetPreviewContent': Allow modifying the wikitext that will be
1443 previewed. Note that it is preferable to implement previews for different data
1444 types using the ContentHandler facility.
1445 $editPage: EditPage object
1446 &$content: Content object to be previewed (may be replaced by hook function)
1447
1448 'EditPageNoSuchSection': When a section edit request is given for an
1449 non-existent section
1450 &$editpage: The current EditPage object
1451 &$res: the HTML of the error text
1452
1453 'EditPageTosSummary': Give a chance for site and per-namespace customizations
1454 of terms of service summary link that might exist separately from the copyright
1455 notice.
1456 $title: title of page being edited
1457 &$msg: localization message name, overridable. Default is 'editpage-tos-summary'
1458
1459 'EmailConfirmed': When checking that the user's email address is "confirmed".
1460 This runs before the other checks, such as anonymity and the real check; return
1461 true to allow those checks to occur, and false if checking is done.
1462 &$user: User being checked
1463 &$confirmed: Whether or not the email address is confirmed
1464
1465 'EmailUser': Before sending email from one user to another.
1466 &$to: MailAddress object of receiving user
1467 &$from: MailAddress object of sending user
1468 &$subject: subject of the mail
1469 &$text: text of the mail
1470 &$error: Out-param for an error. Should be set to a Status object or boolean
1471 false.
1472
1473 'EmailUserCC': Before sending the copy of the email to the author.
1474 &$to: MailAddress object of receiving user
1475 &$from: MailAddress object of sending user
1476 &$subject: subject of the mail
1477 &$text: text of the mail
1478
1479 'EmailUserComplete': After sending email from one user to another.
1480 $to: MailAddress object of receiving user
1481 $from: MailAddress object of sending user
1482 $subject: subject of the mail
1483 $text: text of the mail
1484
1485 'EmailUserForm': After building the email user form object.
1486 &$form: HTMLForm object
1487
1488 'EmailUserPermissionsErrors': to retrieve permissions errors for emailing a
1489 user.
1490 $user: The user who is trying to email another user.
1491 $editToken: The user's edit token.
1492 &$hookErr: Out-param for the error. Passed as the parameters to
1493 OutputPage::showErrorPage.
1494
1495 'EnhancedChangesList::getLogText': to alter, remove or add to the links of a
1496 group of changes in EnhancedChangesList.
1497 Hook subscribers can return false to omit this line from recentchanges.
1498 $changesList: EnhancedChangesList object
1499 &$links: The links that were generated by EnhancedChangesList
1500 $block: The RecentChanges objects in that block
1501
1502 'EnhancedChangesListModifyLineData': to alter data used to build
1503 a grouped recent change inner line in EnhancedChangesList.
1504 Hook subscribers can return false to omit this line from recentchanges.
1505 $changesList: EnhancedChangesList object
1506 &$data: An array with all the components that will be joined in order to create
1507 the line
1508 $block: An array of RecentChange objects in that block
1509 $rc: The RecentChange object for this line
1510 &$classes: An array of classes to change
1511 &$attribs: associative array of other HTML attributes for the <tr> element.
1512 Currently only data attributes reserved to MediaWiki are allowed
1513 (see Sanitizer::isReservedDataAttribute).
1514
1515 'EnhancedChangesListModifyBlockLineData': to alter data used to build
1516 a non-grouped recent change line in EnhancedChangesList.
1517 $changesList: EnhancedChangesList object
1518 &$data: An array with all the components that will be joined in order to create
1519 the line
1520 $rc: The RecentChange object for this line
1521
1522 'ExemptFromAccountCreationThrottle': Exemption from the account creation
1523 throttle.
1524 $ip: The ip address of the user
1525
1526 'ExtensionTypes': Called when generating the extensions credits, use this to
1527 change the tables headers.
1528 &$extTypes: associative array of extensions types
1529
1530 'FetchChangesList': When fetching the ChangesList derivative for a particular
1531 user.
1532 $user: User the list is being fetched for
1533 &$skin: Skin object to be used with the list
1534 &$list: List object (defaults to NULL, change it to an object instance and
1535 return false override the list derivative used)
1536 $groups Array of ChangesListFilterGroup objects (added in 1.34)
1537
1538 'FileDeleteComplete': When a file is deleted.
1539 &$file: reference to the deleted file
1540 &$oldimage: in case of the deletion of an old image, the name of the old file
1541 &$article: in case all revisions of the file are deleted a reference to the
1542 WikiFilePage associated with the file.
1543 &$user: user who performed the deletion
1544 &$reason: reason
1545
1546 'FileTransformed': When a file is transformed and moved into storage.
1547 $file: reference to the File object
1548 $thumb: the MediaTransformOutput object
1549 $tmpThumbPath: The temporary file system path of the transformed file
1550 $thumbPath: The permanent storage path of the transformed file
1551
1552 'FileUndeleteComplete': When a file is undeleted
1553 $title: title object to the file
1554 $fileVersions: array of undeleted versions. Empty if all versions were restored
1555 $user: user who performed the undeletion
1556 $reason: reason
1557
1558 'FileUpload': When a file upload occurs.
1559 $file: Image object representing the file that was uploaded
1560 $reupload: Boolean indicating if there was a previously another image there or
1561 not (since 1.17)
1562 $hasDescription: Boolean indicating that there was already a description page
1563 and a new one from the comment wasn't created (since 1.17)
1564
1565 'FormatAutocomments': When an autocomment is formatted by the Linker.
1566 &$comment: Reference to the accumulated comment. Initially null, when set the
1567 default code will be skipped.
1568 $pre: Boolean, true if there is text before this autocomment
1569 $auto: The extracted part of the parsed comment before the call to the hook.
1570 $post: Boolean, true if there is text after this autocomment
1571 $title: An optional title object used to links to sections. Can be null.
1572 $local: Boolean indicating whether section links should refer to local page.
1573 $wikiId: String containing the ID (as used by WikiMap) of the wiki from which the
1574 autocomment originated; null for the local wiki. Added in 1.26, should default
1575 to null in handler functions, for backwards compatibility.
1576
1577 'GalleryGetModes': Get list of classes that can render different modes of a
1578 gallery.
1579 &$modeArray: An associative array mapping mode names to classes that implement
1580 that mode. It is expected all registered classes are a subclass of
1581 ImageGalleryBase.
1582
1583 'GetAutoPromoteGroups': When determining which autopromote groups a user is
1584 entitled to be in.
1585 $user: user to promote.
1586 &$promote: groups that will be added.
1587
1588 'GetBlockedStatus': after loading blocking status of an user from the database
1589 &$user: user (object) being checked
1590
1591 'GetCacheVaryCookies': Get cookies that should vary cache options.
1592 $out: OutputPage object
1593 &$cookies: array of cookies name, add a value to it if you want to add a cookie
1594 that have to vary cache options
1595
1596 'GetCanonicalURL': Modify fully-qualified URLs used for IRC and e-mail
1597 notifications.
1598 &$title: Title object of page
1599 &$url: string value as output (out parameter, can modify)
1600 $query: query options as string passed to Title::getCanonicalURL()
1601
1602 'GetContentModels': Add content models to the list of available models.
1603 &$models: array containing current model list, as strings. Extensions should add to this list.
1604
1605 'GetDefaultSortkey': Override the default sortkey for a page.
1606 $title: Title object that we need to get a sortkey for
1607 &$sortkey: Sortkey to use.
1608
1609 'GetDifferenceEngine': Called when getting a new difference engine interface
1610 object. Can be used to decorate or replace the default difference engine.
1611 $context: IContextSource context to be used for diff
1612 $old: Revision ID to show and diff with
1613 $new: Either a revision ID or one of the strings 'cur', 'prev' or 'next'
1614 $refreshCache: If set, refreshes the diff cache
1615 $unhide: If set, allow viewing deleted revs
1616 &$differenceEngine: The difference engine object to be used for the diff
1617
1618 'GetDoubleUnderscoreIDs': Modify the list of behavior switch (double
1619 underscore) magic words. Called by MagicWord.
1620 &$doubleUnderscoreIDs: array of strings
1621
1622 'GetExtendedMetadata': Get extended file metadata for the API
1623 &$combinedMeta: Array of the form:
1624 'MetadataPropName' => [
1625 value' => prop value,
1626 'source' => 'name of hook'
1627 ].
1628 $file: File object of file in question
1629 $context: RequestContext (including language to use)
1630 $single: Only extract the current language; if false, the prop value should
1631 be in the metadata multi-language array format:
1632 mediawiki.org/wiki/Manual:File_metadata_handling#Multi-language_array_format
1633 &$maxCacheTime: how long the results can be cached
1634
1635 'GetFullURL': Modify fully-qualified URLs used in redirects/export/offsite data.
1636 &$title: Title object of page
1637 &$url: string value as output (out parameter, can modify)
1638 $query: query options as string passed to Title::getFullURL()
1639
1640 'GetHumanTimestamp': Pre-emptively override the human-readable timestamp
1641 generated by MWTimestamp::getHumanTimestamp(). Return false in this hook to use
1642 the custom output.
1643 &$output: string for the output timestamp
1644 $timestamp: MWTimestamp object of the current (user-adjusted) timestamp
1645 $relativeTo: MWTimestamp object of the relative (user-adjusted) timestamp
1646 $user: User whose preferences are being used to make timestamp
1647 $lang: Language that will be used to render the timestamp
1648
1649 'GetInternalURL': Modify fully-qualified URLs used for squid cache purging.
1650 &$title: Title object of page
1651 &$url: string value as output (out parameter, can modify)
1652 $query: query options as string passed to Title::getInternalURL()
1653
1654 'GetIP': modify the ip of the current user (called only once).
1655 &$ip: string holding the ip as determined so far
1656
1657 'GetLangPreferredVariant': Called in LanguageConverter#getPreferredVariant() to
1658 allow fetching the language variant code from cookies or other such
1659 alternative storage.
1660 &$req: language variant from the URL (string) or boolean false if no variant
1661 was specified in the URL; the value of this variable comes from
1662 LanguageConverter#getURLVariant()
1663
1664 'GetLinkColours': modify the CSS class of an array of page links.
1665 $linkcolour_ids: array of prefixed DB keys of the pages linked to,
1666 indexed by page_id.
1667 &$colours: (output) array of CSS classes, indexed by prefixed DB keys
1668 $title: Title object of the page being parsed, on which the links will be shown
1669
1670 'GetLocalURL': Modify local URLs as output into page links. Note that if you are
1671 working with internal urls (non-interwiki) then it may be preferable to work
1672 with the GetLocalURL::Internal or GetLocalURL::Article hooks as GetLocalURL can
1673 be buggy for internal urls on render if you do not re-implement the horrible
1674 hack that Title::getLocalURL uses in your own extension.
1675 &$title: Title object of page
1676 &$url: string value as output (out parameter, can modify)
1677 $query: query options as string passed to Title::getLocalURL()
1678
1679 'GetLocalURL::Article': Modify local URLs specifically pointing to article paths
1680 without any fancy queries or variants.
1681 &$title: Title object of page
1682 &$url: string value as output (out parameter, can modify)
1683
1684 'GetLocalURL::Internal': Modify local URLs to internal pages.
1685 &$title: Title object of page
1686 &$url: string value as output (out parameter, can modify)
1687 $query: query options as string passed to Title::getLocalURL()
1688
1689 'GetLogTypesOnUser': Add log types where the target is a userpage
1690 &$types: Array of log types
1691
1692 'GetMetadataVersion': Modify the image metadata version currently in use. This
1693 is used when requesting image metadata from a ForeignApiRepo. Media handlers
1694 that need to have versioned metadata should add an element to the end of the
1695 version array of the form 'handler_name=version'. Most media handlers won't need
1696 to do this unless they broke backwards compatibility with a previous version of
1697 the media handler metadata output.
1698 &$version: Array of version strings
1699
1700 'GetNewMessagesAlert': Disable or modify the new messages alert
1701 &$newMessagesAlert: An empty string by default. If the user has new talk page
1702 messages, this should be populated with an alert message to that effect
1703 $newtalks: An empty array if the user has no new messages or an array
1704 containing links and revisions if there are new messages (See
1705 User::getNewMessageLinks)
1706 $user: The user object of the user who is loading the page
1707 $out: OutputPage object (to check what type of page the user is on)
1708
1709 'GetPreferences': Modify user preferences.
1710 $user: User whose preferences are being modified.
1711 &$preferences: Preferences description array, to be fed to an HTMLForm object
1712
1713 'GetRelativeTimestamp': Pre-emptively override the relative timestamp generated
1714 by MWTimestamp::getRelativeTimestamp(). Return false in this hook to use the
1715 custom output.
1716 &$output: string for the output timestamp
1717 &$diff: DateInterval representing the difference between the timestamps
1718 $timestamp: MWTimestamp object of the current (user-adjusted) timestamp
1719 $relativeTo: MWTimestamp object of the relative (user-adjusted) timestamp
1720 $user: User whose preferences are being used to make timestamp
1721 $lang: Language that will be used to render the timestamp
1722
1723 'GetSlotDiffRenderer': Replace or wrap the standard SlotDiffRenderer for some
1724 content type.
1725 $contentHandler: ContentHandler for which the slot diff renderer is fetched.
1726 &$slotDiffRenderer: SlotDiffRenderer to change or replace.
1727 $context: IContextSource
1728
1729 'GetUserBlock': Modify the block found by the block manager. This may be a
1730 single block or a composite block made from multiple blocks; the original
1731 blocks can be seen using CompositeBlock::getOriginalBlocks()
1732 &$block: AbstractBlock object
1733
1734 'getUserPermissionsErrors': Add a permissions error when permissions errors are
1735 checked for. Use instead of userCan for most cases. Return false if the user
1736 can't do it, and populate $result with the reason in the form of
1737 [ messagename, param1, param2, ... ] or a MessageSpecifier instance (you
1738 might want to use ApiMessage to provide machine-readable details for the API).
1739 For consistency, error messages
1740 should be plain text with no special coloring, bolding, etc. to show that
1741 they're errors; presenting them properly to the user as errors is done by the
1742 caller.
1743 &$title: Title object being checked against
1744 &$user: Current user object
1745 $action: Action being checked
1746 &$result: User permissions error to add. If none, return true.
1747
1748 'getUserPermissionsErrorsExpensive': Equal to getUserPermissionsErrors, but is
1749 called only if expensive checks are enabled. Add a permissions error when
1750 permissions errors are checked for. Return false if the user can't do it, and
1751 populate $result with the reason in the form of [ messagename, param1, param2,
1752 ... ] or a MessageSpecifier instance (you might want to use ApiMessage to
1753 provide machine-readable details for the API). For consistency, error messages
1754 should be plain text with no special coloring, bolding, etc. to show that
1755 they're errors; presenting them properly to the user as errors is done by the
1756 caller.
1757 &$title: Title object being checked against
1758 &$user: Current user object
1759 $action: Action being checked
1760 &$result: User permissions error to add. If none, return true.
1761
1762 'GitViewers': Called when generating the list of git viewers for
1763 Special:Version, use this to change the list.
1764 &$extTypes: associative array of repo URLS to viewer URLs.
1765
1766 'HistoryRevisionTools': Override or extend the revision tools available from the
1767 page history view, i.e. undo, rollback, etc.
1768 $rev: Revision object
1769 &$links: Array of HTML links
1770 $prevRev: Revision object, next in line in page history, or null
1771 $user: Current user object
1772
1773 'HistoryPageToolLinks': Add one or more links to revision history page subtitle.
1774 $context: IContextSource (object)
1775 $linkRenderer: LinkRenderer instance
1776 &$links: Array of HTML strings
1777
1778 'HTMLFileCache::useFileCache': Override whether a page should be cached in file
1779 cache.
1780 $context: An IContextSource object with information about the request being
1781 served.
1782
1783 'ImageBeforeProduceHTML': Called before producing the HTML created by a wiki
1784 image insertion. You can skip the default logic entirely by returning false, or
1785 just modify a few things using call-by-reference.
1786 &$skin: Skin object
1787 &$title: Title object of the image
1788 &$file: File object, or false if it doesn't exist
1789 &$frameParams: Various parameters with special meanings; see documentation in
1790 includes/Linker.php for Linker::makeImageLink
1791 &$handlerParams: Various parameters with special meanings; see documentation in
1792 includes/Linker.php for Linker::makeImageLink
1793 &$time: Timestamp of file in 'YYYYMMDDHHIISS' string form, or false for current
1794 &$res: Final HTML output, used if you return false
1795 $parser: Parser instance
1796 &$query: Query params for desc URL
1797 &$widthOption: Used by the parser to remember the user preference thumbnailsize
1798
1799 'ImageOpenShowImageInlineBefore': Call potential extension just before showing
1800 the image on an image page.
1801 &$imagePage: ImagePage object ($this)
1802 &$output: $wgOut
1803
1804 'ImagePageAfterImageLinks': Called after the image links section on an image
1805 page is built.
1806 $imagePage: ImagePage object ($this)
1807 &$html: HTML for the hook to add
1808
1809 'ImagePageFileHistoryLine': Called when a file history line is constructed.
1810 $imagePage: ImagePage object ($this)
1811 $file: the file
1812 &$line: the HTML of the history line
1813 &$css: the line CSS class
1814
1815 'ImagePageFindFile': Called when fetching the file associated with an image
1816 page.
1817 $page: ImagePage object
1818 &$file: File object
1819 &$displayFile: displayed File object
1820
1821 'ImagePageShowTOC': Called when the file toc on an image page is generated.
1822 $page: ImagePage object
1823 &$toc: Array of <li> strings
1824
1825 'ImgAuthBeforeStream': Executed before file is streamed to user, but only when
1826 using img_auth.php.
1827 &$title: the Title object of the file as it would appear for the upload page
1828 &$path: the original file and path name when img_auth was invoked by the web
1829 server
1830 &$name: the name only component of the file
1831 &$result: The location to pass back results of the hook routine (only used if
1832 failed)
1833 $result[0]=The index of the header message
1834 $result[1]=The index of the body text message
1835 $result[2 through n]=Parameters passed to body text message. Please note the
1836 header message cannot receive/use parameters.
1837
1838 'ImgAuthModifyHeaders': Executed just before a file is streamed to a user via
1839 img_auth.php, allowing headers to be modified beforehand.
1840 $title: LinkTarget object
1841 &$headers: HTTP headers ( name => value, names are case insensitive ).
1842 Two headers get special handling: If-Modified-Since (value must be
1843 a valid HTTP date) and Range (must be of the form "bytes=(\d*-\d*)")
1844 will be honored when streaming the file.
1845
1846 'ImportHandleLogItemXMLTag': When parsing a XML tag in a log item.
1847 Return false to stop further processing of the tag
1848 $reader: XMLReader object
1849 $logInfo: Array of information
1850
1851 'ImportHandlePageXMLTag': When parsing a XML tag in a page.
1852 Return false to stop further processing of the tag
1853 $reader: XMLReader object
1854 &$pageInfo: Array of information
1855
1856 'ImportHandleRevisionXMLTag': When parsing a XML tag in a page revision.
1857 Return false to stop further processing of the tag
1858 $reader: XMLReader object
1859 $pageInfo: Array of page information
1860 $revisionInfo: Array of revision information
1861
1862 'ImportHandleToplevelXMLTag': When parsing a top level XML tag.
1863 Return false to stop further processing of the tag
1864 $reader: XMLReader object
1865
1866 'ImportHandleUnknownUser': When a user doesn't exist locally, this hook is
1867 called to give extensions an opportunity to auto-create it. If the auto-creation
1868 is successful, return false.
1869 $name: User name
1870
1871 'ImportHandleUploadXMLTag': When parsing a XML tag in a file upload.
1872 Return false to stop further processing of the tag
1873 $reader: XMLReader object
1874 $revisionInfo: Array of information
1875
1876 'ImportLogInterwikiLink': Hook to change the interwiki link used in log entries
1877 and edit summaries for transwiki imports.
1878 &$fullInterwikiPrefix: Interwiki prefix, may contain colons.
1879 &$pageTitle: String that contains page title.
1880
1881 'ImportSources': Called when reading from the $wgImportSources configuration
1882 variable. Can be used to lazy-load the import sources list.
1883 &$importSources: The value of $wgImportSources. Modify as necessary. See the
1884 comment in DefaultSettings.php for the detail of how to structure this array.
1885
1886 'InfoAction': When building information to display on the action=info page.
1887 $context: IContextSource object
1888 &$pageInfo: Array of information
1889
1890 'InitializeArticleMaybeRedirect': MediaWiki check to see if title is a redirect.
1891 &$title: Title object for the current page
1892 &$request: WebRequest
1893 &$ignoreRedirect: boolean to skip redirect check
1894 &$target: Title/string of redirect target
1895 &$article: Article object
1896
1897 'InternalParseBeforeLinks': during Parser's internalParse method before links
1898 but after nowiki/noinclude/includeonly/onlyinclude and other processings.
1899 &$parser: Parser object
1900 &$text: string containing partially parsed text
1901 &$stripState: Parser's internal StripState object
1902
1903 'InternalParseBeforeSanitize': during Parser's internalParse method just before
1904 the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/
1905 includeonly/onlyinclude and other processings. Ideal for syntax-extensions after
1906 template/parser function execution which respect nowiki and HTML-comments.
1907 &$parser: Parser object
1908 &$text: string containing partially parsed text
1909 &$stripState: Parser's internal StripState object
1910
1911 'InterwikiLoadPrefix': When resolving if a given prefix is an interwiki or not.
1912 Return true without providing an interwiki to continue interwiki search.
1913 $prefix: interwiki prefix we are looking for.
1914 &$iwData: output array describing the interwiki with keys iw_url, iw_local,
1915 iw_trans and optionally iw_api and iw_wikiid.
1916
1917 'InvalidateEmailComplete': Called after a user's email has been invalidated
1918 successfully.
1919 $user: user (object) whose email is being invalidated
1920
1921 'IRCLineURL': When constructing the URL to use in an IRC notification.
1922 Callee may modify $url and $query, URL will be constructed as $url . $query
1923 &$url: URL to index.php
1924 &$query: Query string
1925 $rc: RecentChange object that triggered url generation
1926
1927 'IsFileCacheable': Override the result of Article::isFileCacheable() (if true)
1928 &$article: article (object) being checked
1929
1930 'IsTrustedProxy': Override the result of IP::isTrustedProxy()
1931 &$ip: IP being check
1932 &$result: Change this value to override the result of IP::isTrustedProxy()
1933
1934 'IsUploadAllowedFromUrl': Override the result of UploadFromUrl::isAllowedUrl()
1935 $url: URL used to upload from
1936 &$allowed: Boolean indicating if uploading is allowed for given URL
1937
1938 'isValidEmailAddr': Override the result of Sanitizer::validateEmail(), for
1939 instance to return false if the domain name doesn't match your organization.
1940 $addr: The e-mail address entered by the user
1941 &$result: Set this and return false to override the internal checks
1942
1943 'isValidPassword': Override the result of User::isValidPassword()
1944 $password: The password entered by the user
1945 &$result: Set this and return false to override the internal checks
1946 $user: User the password is being validated for
1947
1948 'Language::getMessagesFileName':
1949 $code: The language code or the language we're looking for a messages file for
1950 &$file: The messages file path, you can override this to change the location.
1951
1952 'LanguageGetNamespaces': Provide custom ordering for namespaces or
1953 remove namespaces. Do not use this hook to add namespaces. Use
1954 CanonicalNamespaces for that.
1955 &$namespaces: Array of namespaces indexed by their numbers
1956
1957 'LanguageGetTranslatedLanguageNames': Provide translated language names.
1958 &$names: array of language code => language name
1959 $code: language of the preferred translations
1960
1961 'LanguageLinks': Manipulate a page's language links. This is called
1962 in various places to allow extensions to define the effective language
1963 links for a page.
1964 $title: The page's Title.
1965 &$links: Array with elements of the form "language:title" in the order
1966 that they will be output.
1967 &$linkFlags: Associative array mapping prefixed links to arrays of flags.
1968 Currently unused, but planned to provide support for marking individual
1969 language links in the UI, e.g. for featured articles.
1970
1971 'LanguageSelector': Hook to change the language selector available on a page.
1972 $out: The output page.
1973 $cssClassName: CSS class name of the language selector.
1974
1975 'LinkBegin': DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead.
1976 Used when generating internal and interwiki links in Linker::link(), before
1977 processing starts. Return false to skip default processing and return $ret. See
1978 documentation for Linker::link() for details on the expected meanings of
1979 parameters.
1980 $skin: the Skin object
1981 $target: the Title that the link is pointing to
1982 &$html: the contents that the <a> tag should have (raw HTML); null means
1983 "default".
1984 &$customAttribs: the HTML attributes that the <a> tag should have, in
1985 associative array form, with keys and values unescaped. Should be merged
1986 with default values, with a value of false meaning to suppress the
1987 attribute.
1988 &$query: the query string to add to the generated URL (the bit after the "?"),
1989 in associative array form, with keys and values unescaped.
1990 &$options: array of options. Can include 'known', 'broken', 'noclasses'.
1991 &$ret: the value to return if your hook returns false.
1992
1993 'LinkEnd': DEPRECATED since 1.28! Use HtmlPageLinkRendererEnd hook instead
1994 Used when generating internal and interwiki links in Linker::link(),
1995 just before the function returns a value. If you return true, an <a> element
1996 with HTML attributes $attribs and contents $html will be returned. If you
1997 return false, $ret will be returned.
1998 $skin: the Skin object
1999 $target: the Title object that the link is pointing to
2000 $options: the options. Will always include either 'known' or 'broken', and may
2001 include 'noclasses'.
2002 &$html: the final (raw HTML) contents of the <a> tag, after processing.
2003 &$attribs: the final HTML attributes of the <a> tag, after processing, in
2004 associative array form.
2005 &$ret: the value to return if your hook returns false.
2006
2007 'LinkerMakeExternalImage': At the end of Linker::makeExternalImage() just
2008 before the return.
2009 &$url: the image url
2010 &$alt: the image's alt text
2011 &$img: the new image HTML (if returning false)
2012
2013 'LinkerMakeExternalLink': At the end of Linker::makeExternalLink() just
2014 before the return.
2015 &$url: the link url
2016 &$text: the link text
2017 &$link: the new link HTML (if returning false)
2018 &$attribs: the attributes to be applied.
2019 $linkType: The external link type
2020
2021 'LinkerMakeMediaLinkFile': At the end of Linker::makeMediaLinkFile() just
2022 before the return.
2023 $title: the Title object that the link is pointing to
2024 $file: the File object or false if broken link
2025 &$html: the link text
2026 &$attribs: the attributes to be applied
2027 &$ret: the value to return if your hook returns false
2028
2029 'LogEventsListLineEnding': Called before a Special:Log line is finished
2030 $page: the LogEventsList object
2031 &$ret: the HTML line
2032 $entry: the DatabaseLogEntry object for this row
2033 &$classes: the classes to add to the surrounding <li>
2034 &$attribs: associative array of other HTML attributes for the <li> element.
2035 Currently only data attributes reserved to MediaWiki are allowed
2036 (see Sanitizer::isReservedDataAttribute).
2037
2038
2039 'HtmlPageLinkRendererBegin':
2040 Used when generating internal and interwiki links in
2041 LinkRenderer, before processing starts. Return false to skip default
2042 processing and return $ret.
2043 $linkRenderer: the LinkRenderer object
2044 $target: the LinkTarget that the link is pointing to
2045 &$text: the contents that the <a> tag should have; either a plain, unescaped
2046 string or a HtmlArmor object; null means "default".
2047 &$customAttribs: the HTML attributes that the <a> tag should have, in
2048 associative array form, with keys and values unescaped. Should be merged
2049 with default values, with a value of false meaning to suppress the
2050 attribute.
2051 &$query: the query string to add to the generated URL (the bit after the "?"),
2052 in associative array form, with keys and values unescaped.
2053 &$ret: the value to return if your hook returns false.
2054
2055 'HtmlPageLinkRendererEnd':
2056 Used when generating internal and interwiki links in LinkRenderer,
2057 just before the function returns a value. If you return true, an <a> element
2058 with HTML attributes $attribs and contents $html will be returned. If you
2059 return false, $ret will be returned.
2060 $linkRenderer: the LinkRenderer object
2061 $target: the LinkTarget object that the link is pointing to
2062 $isKnown: boolean indicating whether the page is known or not
2063 &$text: the contents that the <a> tag should have; either a plain, unescaped
2064 string or a HtmlArmor object.
2065 &$attribs: the final HTML attributes of the <a> tag, after processing, in
2066 associative array form.
2067 &$ret: the value to return if your hook returns false.
2068
2069 'LinksUpdate': At the beginning of LinksUpdate::doUpdate() just before the
2070 actual update.
2071 &$linksUpdate: the LinksUpdate object
2072
2073 'LinksUpdateAfterInsert': At the end of LinksUpdate::incrTableUpdate() after
2074 each link table insert. For example, pagelinks, imagelinks, externallinks.
2075 $linksUpdate: LinksUpdate object
2076 $table: the table to insert links to
2077 $insertions: an array of links to insert
2078
2079 'LinksUpdateComplete': At the end of LinksUpdate::doUpdate() when updating,
2080 including delete and insert, has completed for all link tables
2081 &$linksUpdate: the LinksUpdate object
2082 $ticket: prior result of LBFactory::getEmptyTransactionTicket()
2083
2084 'LinksUpdateConstructed': At the end of LinksUpdate() is construction.
2085 &$linksUpdate: the LinksUpdate object
2086
2087 'ListDefinedTags': When trying to find all defined tags.
2088 &$tags: The list of tags.
2089
2090 'LoadExtensionSchemaUpdates': Called during database installation and updates.
2091 $updater: A DatabaseUpdater subclass
2092
2093 'LocalFile::getHistory': Called before file history query performed.
2094 &$file: the File object
2095 &$tables: tables
2096 &$fields: select fields
2097 &$conds: conditions
2098 &$opts: query options
2099 &$join_conds: JOIN conditions
2100
2101 'LocalFilePurgeThumbnails': Called before thumbnails for a local file a purged.
2102 $file: the File object
2103 $archiveName: name of an old file version or false if it's the current one
2104
2105 'LocalisationCacheRecache': Called when loading the localisation data into
2106 cache.
2107 $cache: The LocalisationCache object
2108 $code: language code
2109 &$alldata: The localisation data from core and extensions
2110
2111 'LocalisationCacheRecacheFallback': Called for each language when merging
2112 fallback data into the cache.
2113 $cache: The LocalisationCache object
2114 $code: language code
2115 &$alldata: The localisation data from core and extensions. Note some keys may
2116 be omitted if they won't be merged into the final result.
2117
2118 'LocalisationChecksBlacklist': When fetching the blacklist of
2119 localisation checks.
2120 &$blacklist: array of checks to blacklist. See the bottom of
2121 maintenance/language/checkLanguage.inc for the format of this variable.
2122
2123 'LocalisationIgnoredOptionalMessages': When fetching the list of ignored and
2124 optional localisation messages
2125 &$ignored: Array of ignored message keys
2126 &$optional: Array of optional message keys
2127
2128 'LocalUserCreated': Called when a local user has been created
2129 $user: User object for the created user
2130 $autocreated: Boolean, whether this was an auto-creation
2131
2132 'LogEventsListGetExtraInputs': When getting extra inputs to display on
2133 Special:Log for a specific log type
2134 $type: String of log type being displayed
2135 $logEventsList: LogEventsList object for context and access to the WebRequest
2136 &$input: string HTML of an input element (deprecated, use $formDescriptor instead)
2137 &$formDescriptor: array HTMLForm's form descriptor
2138
2139 'LogEventsListShowLogExtract': Called before the string is added to OutputPage.
2140 Returning false will prevent the string from being added to the OutputPage.
2141 &$s: html string to show for the log extract
2142 $types: String or Array Log types to show
2143 $page: String or Title The page title to show log entries for
2144 $user: String The user who made the log entries
2145 $param: Associative Array with the following additional options:
2146 - lim Integer Limit of items to show, default is 50
2147 - conds Array Extra conditions for the query (e.g. "log_action != 'revision'")
2148 - showIfEmpty boolean Set to false if you don't want any output in case the
2149 loglist is empty if set to true (default), "No matching items in log" is
2150 displayed if loglist is empty
2151 - msgKey Array If you want a nice box with a message, set this to the key of
2152 the message. First element is the message key, additional optional elements
2153 are parameters for the key that are processed with
2154 wfMessage()->params()->parseAsBlock()
2155 - offset Set to overwrite offset parameter in $wgRequest set to '' to unset
2156 offset
2157 - wrap String Wrap the message in html (usually something like
2158 "&lt;div ...>$1&lt;/div>").
2159 - flags Integer display flags (NO_ACTION_LINK,NO_EXTRA_USER_LINKS)
2160
2161 'LogException': Called before an exception (or PHP error) is logged. This is
2162 meant for integration with external error aggregation services; returning false
2163 will NOT prevent logging.
2164 $e: The exception (in case of a plain old PHP error, a wrapping ErrorException)
2165 $suppressed: true if the error was suppressed via
2166 error_reporting()/wfSuppressWarnings()
2167
2168 'LoginFormValidErrorMessages': Called in LoginForm when a function gets valid
2169 error messages. Allows to add additional error messages (except messages already
2170 in LoginForm::$validErrorMessages).
2171 &$messages: Already added messages (inclusive messages from
2172 LoginForm::$validErrorMessages)
2173
2174 'LogLine': Processes a single log entry on Special:Log.
2175 $log_type: string for the type of log entry (e.g. 'move'). Corresponds to
2176 logging.log_type database field.
2177 $log_action: string for the type of log action (e.g. 'delete', 'block',
2178 'create2'). Corresponds to logging.log_action database field.
2179 $title: Title object that corresponds to logging.log_namespace and
2180 logging.log_title database fields.
2181 $paramArray: Array of parameters that corresponds to logging.log_params field.
2182 Note that only $paramArray[0] appears to contain anything.
2183 &$comment: string that corresponds to logging.log_comment database field, and
2184 which is displayed in the UI.
2185 &$revert: string that is displayed in the UI, similar to $comment.
2186 $time: timestamp of the log entry (added in 1.12)
2187
2188 'LonelyPagesQuery': Allow extensions to modify the query used by
2189 Special:LonelyPages.
2190 &$tables: tables to join in the query
2191 &$conds: conditions for the query
2192 &$joinConds: join conditions for the query
2193
2194 'MagicWordwgVariableIDs': When defining new magic words IDs.
2195 &$variableIDs: array of strings
2196
2197 'MaintenanceUpdateAddParams': allow extensions to add params to the update.php
2198 maintenance script.
2199 &$params: array to populate with the params to be added. Array elements are keyed by
2200 the param name. Each param is an associative array that must include the following keys:
2201 - desc The description of the param to show on --help
2202 - require Is the param required? Defaults to false if not set.
2203 - withArg Is an argument required with this option? Defaults to false if not set.
2204 - shortName Character to use as short name, or false if none. Defaults to false if not set.
2205 - multiOccurrence Can this option be passed multiple times? Defaults to false if not set.
2206
2207 'MaintenanceRefreshLinksInit': before executing the refreshLinks.php maintenance
2208 script.
2209 $refreshLinks: RefreshLinks object
2210
2211 'MakeGlobalVariablesScript': Called at end of OutputPage::getJSVars.
2212 Ideally, this hook should only be used to add variables that depend on
2213 the current page/request; static configuration should be added through
2214 ResourceLoaderGetConfigVars instead.
2215 &$vars: variable (or multiple variables) to be added into the output of
2216 Skin::makeVariablesScript
2217 $out: The OutputPage which called the hook, can be used to get the real title.
2218
2219 'ManualLogEntryBeforePublish': Allows to access or modify log entry just before it is
2220 published.
2221 $logEntry: ManualLogEntry object
2222
2223 'MarkPatrolled': Before an edit is marked patrolled.
2224 $rcid: ID of the revision to be marked patrolled
2225 &$user: the user (object) marking the revision as patrolled
2226 $wcOnlySysopsCanPatrol: config setting indicating whether the user needs to be a
2227 sysop in order to mark an edit patrolled.
2228 $auto: true if the edit is being marked as patrolled automatically
2229 &$tags: the tags to be applied to the patrol log entry
2230
2231 'MarkPatrolledComplete': After an edit is marked patrolled.
2232 $rcid: ID of the revision marked as patrolled
2233 &$user: user (object) who marked the edit patrolled
2234 $wcOnlySysopsCanPatrol: config setting indicating whether the user must be a
2235 sysop to patrol the edit.
2236 $auto: true if the edit is being marked as patrolled automatically
2237
2238 'ApiMaxLagInfo': When lag information is being requested via API. Use this to
2239 override lag information. Generally a hook function should only replace
2240 $lagInfo if the new $lagInfo['lag'] is greater than the current $lagInfo['lag'].
2241 &$lagInfo: Maximum lag information array. Fields in the array are:
2242 'lag' is the number of seconds of lag.
2243 'host' is the host name on which the lag exists.
2244 'type' is an indication of the type of lag,
2245 e.g. "db" for database replication lag or "jobqueue" for job queue size
2246 converted to pseudo-seconds.
2247 It is possible to add more fields and they will be returned to the user in
2248 the API response.
2249
2250 'MediaWikiPerformAction': Override MediaWiki::performAction(). Use this to do
2251 something completely different, after the basic globals have been set up, but
2252 before ordinary actions take place.
2253 $output: $wgOut
2254 $article: Article on which the action will be performed
2255 $title: Title on which the action will be performed
2256 $user: $wgUser
2257 $request: $wgRequest
2258 $mediaWiki: The $mediawiki object
2259
2260 'MediaWikiServices': Called when a global MediaWikiServices instance is
2261 initialized. Extensions may use this to define, replace, or wrap services.
2262 However, the preferred way to define a new service is
2263 the $wgServiceWiringFiles array.
2264 $services: MediaWikiServices
2265
2266 'MessageCache::get': When fetching a message. Can be used to override the key
2267 for customisations. Given and returned message key must be in special format:
2268 1) first letter must be in lower case according to the content language.
2269 2) spaces must be replaced with underscores
2270 &$key: message key (string)
2271
2272 'MessageCacheReplace': When a message page is changed. Useful for updating
2273 caches.
2274 $title: name of the page changed.
2275 $text: new contents of the page.
2276
2277 'MessagesPreLoad': When loading a message from the database.
2278 $title: title of the message (string)
2279 &$message: value (string), change it to the message you want to define
2280 $code: code (string) denoting the language to try.
2281
2282 'MimeMagicGuessFromContent': Allows MW extensions guess the MIME by content.
2283 $mimeMagic: Instance of MimeAnalyzer.
2284 &$head: First 1024 bytes of the file in a string (in - Do not alter!).
2285 &$tail: More or equal than last 65558 bytes of the file in a string
2286 (in - Do not alter!).
2287 $file: File path.
2288 &$mime: MIME type (out).
2289
2290 'MimeMagicImproveFromExtension': Allows MW extensions to further improve the
2291 MIME type detected by considering the file extension.
2292 $mimeMagic: Instance of MimeAnalyzer.
2293 $ext: File extension.
2294 &$mime: MIME type (in/out).
2295
2296 'MimeMagicInit': Before processing the list mapping MIME types to media types
2297 and the list mapping MIME types to file extensions.
2298 As an extension author, you are encouraged to submit patches to MediaWiki's
2299 core to add new MIME types to mime.types.
2300 $mimeMagic: Instance of MimeAnalyzer.
2301 Use $mimeMagic->addExtraInfo( $stringOfInfo );
2302 for adding new MIME info to the list.
2303 Use $mimeMagic->addExtraTypes( $stringOfTypes );
2304 for adding new MIME types to the list.
2305
2306 'ModifyExportQuery': Modify the query used by the exporter.
2307 $db: The database object to be queried.
2308 &$tables: Tables in the query.
2309 &$conds: Conditions in the query.
2310 &$opts: Options for the query.
2311 &$join_conds: Join conditions for the query.
2312
2313 'MovePageCheckPermissions': Specify whether the user is allowed to move the
2314 page.
2315 $oldTitle: Title object of the current (old) location
2316 $newTitle: Title object of the new location
2317 $user: User making the move
2318 $reason: string of the reason provided by the user
2319 $status: Status object to pass error messages to
2320
2321 'MovePageIsValidMove': Specify whether a page can be moved for technical
2322 reasons.
2323 $oldTitle: Title object of the current (old) location
2324 $newTitle: Title object of the new location
2325 $status: Status object to pass error messages to
2326
2327 'NamespaceIsMovable': Called when determining if it is possible to pages in a
2328 namespace.
2329 $index: Integer; the index of the namespace being checked.
2330 &$result: Boolean; whether MediaWiki currently thinks that pages in this
2331 namespace are movable. Hooks may change this value to override the return
2332 value of NamespaceInfo::isMovable().
2333
2334 'NewDifferenceEngine': Called when a new DifferenceEngine object is made
2335 $title: the diff page title (nullable)
2336 &$oldId: the actual old Id to use in the diff
2337 &$newId: the actual new Id to use in the diff (0 means current)
2338 $old: the ?old= param value from the url
2339 $new: the ?new= param value from the url
2340
2341 'NewPagesLineEnding': Called before a NewPages line is finished.
2342 $page: the SpecialNewPages object
2343 &$ret: the HTML line
2344 $row: the database row for this page (the recentchanges record and a few extras
2345 - see NewPagesPager::getQueryInfo)
2346 &$classes: the classes to add to the surrounding <li>
2347 &$attribs: associative array of other HTML attributes for the <li> element.
2348 Currently only data attributes reserved to MediaWiki are allowed
2349 (see Sanitizer::isReservedDataAttribute).
2350
2351 'NewRevisionFromEditComplete': Called when a revision was inserted due to an
2352 edit.
2353 $wikiPage: the WikiPage edited
2354 $rev: the new revision
2355 $originalRevId: if the edit restores or repeats an earlier revision (such as a
2356 rollback or a null revision), the ID of that earlier revision. False otherwise.
2357 (Used to be called $baseID.)
2358 $user: the editing user
2359 &$tags: tags to apply to the edit and recent change
2360
2361 'OldChangesListRecentChangesLine': Customize entire recent changes line, or
2362 return false to omit the line from RecentChanges and Watchlist special pages.
2363 &$changeslist: The OldChangesList instance.
2364 &$s: HTML of the form "<li>...</li>" containing one RC entry.
2365 $rc: The RecentChange object.
2366 &$classes: array of css classes for the <li> element.
2367 &$attribs: associative array of other HTML attributes for the <li> element.
2368 Currently only data attributes reserved to MediaWiki are allowed
2369 (see Sanitizer::isReservedDataAttribute).
2370
2371 'OpenSearchUrls': Called when constructing the OpenSearch description XML. Hooks
2372 can alter or append to the array of URLs for search & suggestion formats.
2373 &$urls: array of associative arrays with Url element attributes
2374
2375 'OpportunisticLinksUpdate': Called by WikiPage::triggerOpportunisticLinksUpdate
2376 when a page view triggers a re-rendering of the page. This may happen
2377 particularly if the parser cache is split by user language, and no cached
2378 rendering of the page exists in the user's language. The hook is called
2379 before checking whether page_links_updated indicates that the links are up
2380 to date. Returning false will cause triggerOpportunisticLinksUpdate() to abort
2381 without triggering any updates.
2382 $page: the Page that was rendered.
2383 $title: the Title of the rendered page.
2384 $parserOutput: ParserOutput resulting from rendering the page.
2385
2386 'OtherAutoblockLogLink': Get links to the autoblock log from extensions which
2387 autoblocks users and/or IP addresses too.
2388 &$otherBlockLink: An array with links to other autoblock logs
2389
2390 'OtherBlockLogLink': Get links to the block log from extensions which blocks
2391 users and/or IP addresses too.
2392 &$otherBlockLink: An array with links to other block logs
2393 $ip: The requested IP address or username
2394
2395 'OutputPageAfterGetHeadLinksArray': Called in OutputPage#getHeadLinksArray right
2396 before returning the result.
2397 &$tags: array containing all <head> links generated so far. The array format is
2398 "link name or number => 'link HTML'".
2399 $out: the OutputPage object
2400
2401 'OutputPageBeforeHTML': A page has been processed by the parser and the
2402 resulting HTML is about to be displayed.
2403 &$parserOutput: the parserOutput (object) that corresponds to the page
2404 &$text: the text that will be displayed, in HTML (string)
2405
2406 'OutputPageBodyAttributes': Called when OutputPage::headElement is creating the
2407 body tag to allow for extensions to add attributes to the body of the page they
2408 might need. Or to allow building extensions to add body classes that aren't of
2409 high enough demand to be included in core.
2410 $out: The OutputPage which called the hook, can be used to get the real title
2411 $sk: The Skin that called OutputPage::headElement
2412 &$bodyAttrs: An array of attributes for the body tag passed to Html::openElement
2413
2414 'OutputPageCheckLastModified': when checking if the page has been modified
2415 since the last visit.
2416 &$modifiedTimes: array of timestamps.
2417 The following keys are set: page, user, epoch
2418 $out: OutputPage object (since 1.28)
2419
2420 'OutputPageMakeCategoryLinks': Links are about to be generated for the page's
2421 categories. Implementations should return false if they generate the category
2422 links, so the default link generation is skipped.
2423 &$out: OutputPage instance (object)
2424 $categories: associative array, keys are category names, values are category
2425 types ("normal" or "hidden")
2426 &$links: array, intended to hold the result. Must be an associative array with
2427 category types as keys and arrays of HTML links as values.
2428
2429 'OutputPageParserOutput': after adding a parserOutput to $wgOut
2430 &$out: OutputPage instance (object)
2431 $parserOutput: parserOutput instance being added in $out
2432
2433 'PageContentInsertComplete': After a new article is created.
2434 $wikiPage: WikiPage created
2435 $user: User creating the article
2436 $content: New content as a Content object
2437 $summary: Edit summary/comment
2438 $isMinor: Whether or not the edit was marked as minor
2439 $isWatch: (No longer used)
2440 $section: (No longer used)
2441 $flags: Flags passed to WikiPage::doEditContent()
2442 $revision: New Revision of the article
2443
2444 'PageContentLanguage': Allows changing the language in which the content of a
2445 page is written. Defaults to the wiki content language.
2446 $title: Title object
2447 &$pageLang: the page content language. Input can be anything (under control of
2448 hook subscribers), but hooks should return Language objects. Language code
2449 strings are deprecated.
2450 $userLang: the user language (Language object)
2451
2452 'PageContentSave': Before an article is saved.
2453 $wikiPage: the WikiPage (object) being saved
2454 $user: the user (object) saving the article
2455 $content: the new article content, as a Content object
2456 &$summary: CommentStoreComment object containing the edit comment. Can be replaced with a new one.
2457 $isminor: Boolean flag specifying if the edit was marked as minor.
2458 $iswatch: Previously a watch flag. Currently unused, always null.
2459 $section: Previously the section number being edited. Currently unused, always null.
2460 $flags: All EDIT_… flags (including EDIT_MINOR) as an integer number. See WikiPage::doEditContent
2461 documentation for flags' definition.
2462 $status: StatusValue object for the hook handlers resulting status. Either set $status->fatal() or
2463 return false to abort the save action.
2464
2465 'PageContentSaveComplete': After an article has been updated.
2466 $wikiPage: WikiPage modified
2467 $user: User performing the modification
2468 $content: New content, as a Content object
2469 $summary: Edit summary/comment
2470 $isMinor: Whether or not the edit was marked as minor
2471 $isWatch: (No longer used)
2472 $section: (No longer used)
2473 $flags: Flags passed to WikiPage::doEditContent()
2474 $revision: New Revision of the article (can be null for edits that change
2475 nothing)
2476 $status: Status object about to be returned by doEditContent()
2477 $originalRevId: if the edit restores or repeats an earlier revision (such as a
2478 rollback or a null revision), the ID of that earlier revision. False otherwise.
2479 (Used to be called $baseRevId.)
2480 $undidRevId: the rev ID (or 0) this edit undid
2481
2482 'PageDeletionDataUpdates': Called when constructing a list of DeferrableUpdate to be
2483 executed when a page is deleted.
2484 $title The Title of the page being deleted.
2485 $revision A RevisionRecord representing the page's current revision at the time of deletion.
2486 &$updates A list of DeferrableUpdate that can be manipulated by the hook handler.
2487
2488 'PageHistoryBeforeList': When a history page list is about to be constructed.
2489 &$article: the article that the history is loading for
2490 $context: RequestContext object
2491
2492 'PageHistoryLineEnding': Right before the end <li> is added to a history line.
2493 $historyAction: the action object
2494 &$row: the revision row for this line
2495 &$s: the string representing this parsed line
2496 &$classes: array containing the <li> element classes
2497 &$attribs: associative array of other HTML attributes for the <li> element.
2498 Currently only data attributes reserved to MediaWiki are allowed
2499 (see Sanitizer::isReservedDataAttribute).
2500
2501 'PageHistoryPager::doBatchLookups': Called after the pager query was run, before
2502 any output is generated, to allow batch lookups for prefetching information
2503 needed for display. If the hook handler returns false, the regular behavior of
2504 doBatchLookups() is skipped.
2505 $pager: the PageHistoryPager
2506 $result: a ResultWrapper representing the query result
2507
2508 'PageHistoryPager::getQueryInfo': when a history pager query parameter set is
2509 constructed.
2510 &$pager: the pager
2511 &$queryInfo: the query parameters
2512
2513 'PageRenderingHash': NOTE: Consider using ParserOptionsRegister instead.
2514 Alter the parser cache option hash key. A parser extension
2515 which depends on user options should install this hook and append its values to
2516 the key.
2517 &$confstr: reference to a hash key string which can be modified
2518 $user: User (object) requesting the page
2519 &$forOptions: array of options the hash is for
2520
2521 'PageViewUpdates': Allow database (or other) changes to be made after a
2522 page view is seen by MediaWiki. Note this does not capture views made
2523 via external caches such as Squid.
2524 $wikipage: WikiPage (object) for the page being viewed.
2525 $user: User (object) for the user who is viewing.
2526
2527 'ParserAfterParse': Called from Parser::parse() just after the call to
2528 Parser::internalParse() returns.
2529 &$parser: parser object
2530 &$text: text being parsed
2531 &$stripState: stripState used (object)
2532
2533 'ParserAfterStrip': Called at end of parsing time.
2534 TODO: No more strip, deprecated ?
2535 &$parser: parser object
2536 &$text: text being parsed
2537 &$stripState: stripState used (object)
2538
2539 'ParserAfterTidy': Called after Parser::tidy() in Parser::parse()
2540 &$parser: Parser object being used
2541 &$text: text that will be returned
2542
2543 'ParserAfterUnstrip': Called after the first unstripGeneral() in
2544 Parser::internalParseHalfParsed()
2545 &$parser: Parser object being used
2546 &$text: text that will be returned
2547
2548 'ParserBeforeInternalParse': Called at the beginning of Parser::internalParse().
2549 &$parser: Parser object
2550 &$text: text to parse
2551 &$stripState: StripState instance being used
2552
2553 'ParserBeforeStrip': Called at start of parsing time.
2554 TODO: No more strip, deprecated ?
2555 &$parser: parser object
2556 &$text: text being parsed
2557 &$stripState: stripState used (object)
2558
2559 'ParserBeforeTidy': Called before tidy and custom tags replacements.
2560 &$parser: Parser object being used
2561 &$text: actual text
2562
2563 'ParserCacheSaveComplete': Called after a ParserOutput has been committed to
2564 the parser cache.
2565 $parserCache: ParserCache object $parserOutput was stored in
2566 $parserOutput: ParserOutput object that was stored
2567 $title: Title of the page that was parsed to generate $parserOutput
2568 $popts: ParserOptions used for generating $parserOutput
2569 $revId: ID of the revision that was parsed to create $parserOutput
2570
2571 'ParserClearState': Called at the end of Parser::clearState().
2572 &$parser: Parser object being cleared
2573
2574 'ParserCloned': Called when the parser is cloned.
2575 $parser: Newly-cloned Parser object
2576
2577 'ParserFetchTemplate': Called when the parser fetches a template
2578 $parser: Parser Parser object or false
2579 $title: Title object of the template to be fetched
2580 $rev: Revision object of the template
2581 &$text: Transclusion text of the template or false or null
2582 &$deps: Array of template dependencies with 'title', 'page_id', 'rev_id' keys
2583
2584 'ParserFirstCallInit': Called when the parser initialises for the first time.
2585 &$parser: Parser object being cleared
2586
2587 'ParserGetVariableValueSwitch': Called when the parser need the value of a
2588 custom magic word
2589 &$parser: Parser object
2590 &$varCache: array to store the value in case of multiples calls of the
2591 same magic word
2592 &$index: index (string) of the magic
2593 &$ret: value of the magic word (the hook should set it)
2594 &$frame: PPFrame object to use for expanding any template variables
2595
2596 'ParserGetVariableValueTs': Use this to change the value of the time for the
2597 {{LOCAL...}} magic word.
2598 &$parser: Parser object
2599 &$time: actual time (timestamp)
2600
2601 'ParserGetVariableValueVarCache': use this to change the value of the variable
2602 cache or return false to not use it.
2603 &$parser: Parser object
2604 &$varCache: variable cache (array)
2605
2606 'ParserLimitReportFormat': Called for each row in the parser limit report that
2607 needs formatting. If nothing handles this hook, the default is to use "$key" to
2608 get the label, and "$key-value" or "$key-value-text"/"$key-value-html" to
2609 format the value.
2610 $key: Key for the limit report item (string)
2611 &$value: Value of the limit report item
2612 &$report: String onto which to append the data
2613 $isHTML: If true, $report is an HTML table with two columns; if false, it's
2614 text intended for display in a monospaced font.
2615 $localize: If false, $report should be output in English.
2616
2617 'ParserLimitReportPrepare': Called at the end of Parser:parse() when the parser
2618 will include comments about size of the text parsed. Hooks should use
2619 $output->setLimitReportData() to populate data. Functions for this hook should
2620 not use $wgLang; do that in ParserLimitReportFormat instead.
2621 $parser: Parser object
2622 $output: ParserOutput object
2623
2624 'ParserMakeImageParams': Called before the parser make an image link, use this
2625 to modify the parameters of the image.
2626 $title: title object representing the file
2627 $file: file object that will be used to create the image
2628 &$params: 2-D array of parameters
2629 $parser: Parser object that called the hook
2630
2631 'ParserOptionsRegister': Register additional parser options. Note that if you
2632 change the default value for an option, all existing parser cache entries will
2633 be invalid. To avoid bugs, you'll need to handle that somehow (e.g. with the
2634 RejectParserCacheValue hook) because MediaWiki won't do it for you.
2635 &$defaults: Set the default value for your option here.
2636 &$inCacheKey: To fragment the parser cache on your option, set a truthy value
2637 here.
2638 &$lazyLoad: To lazy-initialize your option, set it null in $defaults and set a
2639 callable here. The callable is passed the ParserOptions object and the option
2640 name.
2641
2642 'ParserOutputPostCacheTransform': Called from ParserOutput::getText() to do
2643 post-cache transforms.
2644 $parserOutput: The ParserOutput object.
2645 &$text: The text being transformed, before core transformations are done.
2646 &$options: The options array being used for the transformation.
2647
2648 'ParserSectionCreate': Called each time the parser creates a document section
2649 from wikitext. Use this to apply per-section modifications to HTML (like
2650 wrapping the section in a DIV). Caveat: DIVs are valid wikitext, and a DIV
2651 can begin in one section and end in another. Make sure your code can handle
2652 that case gracefully. See the EditSectionClearerLink extension for an example.
2653 $parser: the calling Parser instance
2654 $section: the section number, zero-based, but section 0 is usually empty
2655 &$sectionContent: ref to the content of the section. modify this.
2656 $showEditLinks: boolean describing whether this section has an edit link
2657
2658 'ParserTestGlobals': Allows to define globals for parser tests.
2659 &$globals: Array with all the globals which should be set for parser tests.
2660 The arrays keys serve as the globals names, its values are the globals values.
2661
2662 'ParserTestTables': Alter the list of tables to duplicate when parser tests are
2663 run. Use when page save hooks require the presence of custom tables to ensure
2664 that tests continue to run properly.
2665 &$tables: array of table names
2666
2667 'ParserOutputStashForEdit': Called when an edit stash parse finishes, before the
2668 output is cached.
2669 $page: the WikiPage of the candidate edit
2670 $content: the Content object of the candidate edit
2671 $output: the ParserOutput result of the candidate edit
2672 $summary: the change summary of the candidate edit
2673 $user: the User considering the edit
2674
2675 'PasswordPoliciesForUser': Alter the effective password policy for a user.
2676 $user: User object whose policy you are modifying
2677 &$effectivePolicy: Array of policy statements that apply to this user
2678
2679 'PerformRetroactiveAutoblock': Called before a retroactive autoblock is applied
2680 to a user.
2681 $block: Block object (which is set to be autoblocking)
2682 &$blockIds: Array of block IDs of the autoblock
2683
2684 'PersonalUrls': Alter the user-specific navigation links (e.g. "my page,
2685 my talk page, my contributions" etc).
2686 &$personal_urls: Array of link specifiers (see SkinTemplate.php)
2687 &$title: Title object representing the current page
2688 $skin: SkinTemplate object providing context (e.g. to check if the user is
2689 logged in, etc.)
2690
2691 'PingLimiter': Allows extensions to override the results of User::pingLimiter().
2692 &$user: User performing the action
2693 $action: Action being performed
2694 &$result: Whether or not the action should be prevented
2695 Change $result and return false to give a definitive answer, otherwise
2696 the built-in rate limiting checks are used, if enabled.
2697 $incrBy: Amount to increment counter by
2698
2699 'PlaceNewSection': Override placement of new sections. Return false and put the
2700 merged text into $text to override the default behavior.
2701 $wikipage: WikiPage object
2702 $oldtext: the text of the article before editing
2703 $subject: subject of the new section
2704 &$text: text of the new section
2705
2706 'PostLoginRedirect': Modify the post login redirect behavior.
2707 Occurs after signing up or logging in, allows for interception of redirect.
2708 &$returnTo: The page name to return to, as a string
2709 &$returnToQuery: array of url parameters, mapping parameter names to values
2710 &$type: type of login redirect as string;
2711 error: display a return to link ignoring $wgRedirectOnLogin
2712 signup: display a return to link using $wgRedirectOnLogin if needed
2713 success: display a return to link using $wgRedirectOnLogin if needed
2714 successredirect: send an HTTP redirect using $wgRedirectOnLogin if needed
2715
2716 'PreferencesFormPreSave': Override preferences being saved
2717 $formData: array of user submitted data
2718 $form: HTMLForm object, also a ContextSource
2719 $user: User object with preferences to be saved set
2720 &$result: boolean indicating success
2721 $oldUserOptions: array with user old options (before save)
2722
2723 'PreferencesGetLegend': Override the text used for the <legend> of a
2724 preferences section.
2725 $form: the HTMLForm object. This is a ContextSource as well
2726 $key: the section name
2727 &$legend: the legend text. Defaults to wfMessage( "prefs-$key" )->text() but may
2728 be overridden
2729
2730 'PrefixSearchBackend': DEPRECATED since 1.27! Override
2731 SearchEngine::completionSearchBackend instead.
2732 Override the title prefix search used for OpenSearch and
2733 AJAX search suggestions. Put results into &$results outparam and return false.
2734 $ns: array of int namespace keys to search in
2735 $search: search term (not guaranteed to be conveniently normalized)
2736 $limit: maximum number of results to return
2737 &$results: out param: array of page names (strings)
2738 $offset: number of results to offset from the beginning
2739
2740 'PrefixSearchExtractNamespace': Called if core was not able to extract a
2741 namespace from the search string so that extensions can attempt it.
2742 &$namespaces: array of int namespace keys to search in (change this if you can
2743 extract namespaces)
2744 &$search: search term (replace this with term without the namespace if you can
2745 extract one)
2746
2747 'PrefsEmailAudit': Called when user changes their email address.
2748 $user: User (object) changing his email address
2749 $oldaddr: old email address (string)
2750 $newaddr: new email address (string)
2751
2752 'ProtectionForm::buildForm': Called after all protection type fieldsets are made
2753 in the form.
2754 $article: the title being (un)protected
2755 &$output: a string of the form HTML so far
2756
2757 'ProtectionForm::save': Called when a protection form is submitted.
2758 $article: the Page being (un)protected
2759 &$errorMsg: an html message string of an error or an array of message name and
2760 its parameters
2761 $reasonstr: a string describing the reason page protection level is altered
2762
2763 'ProtectionForm::showLogExtract': Called after the protection log extract is
2764 shown.
2765 $article: the page the form is shown for
2766 $out: OutputPage object
2767
2768 'RandomPageQuery': Lets you modify the query used by Special:Random to select
2769 random pages.
2770 &$tables: Database tables to be used in the query
2771 &$conds: Conditions to be applied in the query
2772 &$joinConds: Join conditions to be applied in the query
2773
2774 'RawPageViewBeforeOutput': Right before the text is blown out in action=raw.
2775 &$obj: RawAction object
2776 &$text: The text that's going to be the output
2777
2778 'RecentChange_save': Called at the end of RecentChange::save().
2779 &$recentChange: RecentChange object
2780
2781 'RecentChangesPurgeRows': Called when old recentchanges rows are purged, after
2782 deleting those rows but within the same transaction.
2783 $rows: The deleted rows as an array of recentchanges row objects (with up to
2784 $wgUpdateRowsPerQuery items).
2785
2786 'RedirectSpecialArticleRedirectParams': Lets you alter the set of parameter
2787 names such as "oldid" that are preserved when using redirecting special pages
2788 such as Special:MyPage and Special:MyTalk.
2789 &$redirectParams: An array of parameters preserved by redirecting special pages.
2790
2791 'RejectParserCacheValue': Return false to reject an otherwise usable
2792 cached value from the Parser cache. NOTE: CARELESS USE OF THIS HOOK CAN
2793 HAVE CATASTROPHIC CONSEQUENCES FOR HIGH-TRAFFIC INSTALLATIONS. USE WITH
2794 EXTREME CARE.
2795 $parserOutput: ParserOutput value.
2796 $wikiPage: WikiPage object.
2797 $parserOptions: ParserOptions object.
2798
2799 'RequestContextCreateSkin': Called when RequestContext::getSkin creates a skin
2800 instance. Can be used by an extension override what skin is used in certain
2801 contexts.
2802 $context: (IContextSource) The RequestContext the skin is being created for.
2803 &$skin: A variable reference you may set a Skin instance or string key on to
2804 override the skin that will be used for the context.
2805
2806 'RequestHasSameOriginSecurity': Called to determine if the request is somehow
2807 flagged to lack same-origin security. Return false to indicate the lack. Note
2808 if the "somehow" involves HTTP headers, you'll probably need to make sure
2809 the header is varied on.
2810 $request: The WebRequest object.
2811
2812 'ResetPasswordExpiration': Allow extensions to set a default password expiration
2813 $user: The user having their password expiration reset
2814 &$newExpire: The new expiration date
2815
2816 'ResourceLoaderForeignApiModules': Called from ResourceLoaderForeignApiModule.
2817 Use this to add dependencies to 'mediawiki.ForeignApi' module when you wish
2818 to override its behavior. See the module docs for more information.
2819 &$dependencies: string[] List of modules that 'mediawiki.ForeignApi' should
2820 depend on
2821 $context: ResourceLoaderContext|null
2822
2823 'ResourceLoaderGetConfigVars': Called at the end of
2824 ResourceLoaderStartUpModule::getConfigSettings(). Use this to export static
2825 configuration variables to JavaScript. Things that depend on the current page
2826 or request state must be added through MakeGlobalVariablesScript instead.
2827 Skin is made available for skin specific config.
2828 &$vars: [ variable name => value ]
2829 $skin: Skin
2830 $config: Config object (since 1.34)
2831
2832 'ResourceLoaderJqueryMsgModuleMagicWords': Called in
2833 ResourceLoaderJqueryMsgModule to allow adding magic words for jQueryMsg.
2834 The value should be a string, and they can depend only on the
2835 ResourceLoaderContext.
2836 $context: ResourceLoaderContext
2837 &$magicWords: Associative array mapping all-caps magic word to a string value
2838
2839 'ResourceLoaderRegisterModules': Right before modules information is required,
2840 such as when responding to a resource
2841 loader request or generating HTML output.
2842 &$resourceLoader: ResourceLoader object
2843
2844 'ResourceLoaderTestModules': DEPRECATED since 1.33! Register ResourceLoader modules
2845 that are only available when `$wgEnableJavaScriptTest` is true. Use this for test
2846 suites and other test-only resources.
2847 &$testModules: one array of modules per test framework. The modules array
2848 follows the same format as `$wgResourceModules`. For example:
2849 $testModules['qunit']['ext.Example.test'] = [
2850 'localBasePath' => __DIR__ . '/tests/qunit',
2851 'remoteExtPath' => 'Example/tests/qunit',
2852 'script' => [ 'tests/qunit/foo.js' ],
2853 'dependencies' => [ 'ext.Example.foo' ]
2854 ];
2855 &$ResourceLoader: object
2856
2857 'RevisionDataUpdates': Called when constructing a list of DeferrableUpdate to be
2858 executed to record secondary data about a revision.
2859 $title The Title of the page the revision belongs to
2860 $renderedRevision a RenderedRevision object representing the new revision and providing access
2861 to the RevisionRecord as well as ParserOutput of that revision.
2862 &$updates A list of DeferrableUpdate that can be manipulated by the hook handler.
2863
2864 'RevisionRecordInserted': Called after a revision is inserted into the database.
2865 $revisionRecord: the RevisionRecord that has just been inserted.
2866
2867 'RevisionInsertComplete': DEPRECATED since 1.31! Use RevisionRecordInserted hook
2868 instead. Called after a revision is inserted into the database.
2869 $revision: the Revision
2870 $data: DEPRECATED! Always null!
2871 $flags: DEPRECATED! Always null!
2872
2873 'SearchableNamespaces': An option to modify which namespaces are searchable.
2874 &$arr: Array of namespaces ($nsId => $name) which will be used.
2875
2876 'SearchAfterNoDirectMatch': If there was no match for the exact result. This
2877 runs before lettercase variants are attempted, whereas 'SearchGetNearMatch'
2878 runs after.
2879 $term: Search term string
2880 &$title: Outparam; set to $title object and return false for a match
2881
2882 'SearchGetNearMatch': An extra chance for exact-title-matches in "go" searches
2883 if nothing was found.
2884 $term: Search term string
2885 &$title: Outparam; set to $title object and return false for a match
2886
2887 'SearchGetNearMatchBefore': Perform exact-title-matches in "go" searches before
2888 the normal operations.
2889 $allSearchTerms: Array of the search terms in all content languages
2890 &$titleResult: Outparam; the value to return. A Title object or null.
2891
2892 'SearchGetNearMatchComplete': A chance to modify exact-title-matches in "go"
2893 searches.
2894 $term: Search term string
2895 &$title: Current Title object that is being returned (null if none found).
2896
2897 'SearchResultInitFromTitle': Set the revision used when displaying a page in
2898 search results.
2899 $title: Current Title object being displayed in search results.
2900 &$id: Revision ID (default is false, for latest)
2901
2902 'SearchIndexFields': Add fields to search index mapping.
2903 &$fields: Array of fields, all implement SearchIndexField
2904 $engine: SearchEngine instance for which mapping is being built.
2905
2906 'SearchDataForIndex': Add data to search document. Allows to add any data to
2907 the field map used to index the document.
2908 &$fields: Array of name => value pairs for fields
2909 $handler: ContentHandler for the content being indexed
2910 $page: WikiPage that is being indexed
2911 $output: ParserOutput that is produced from the page
2912 $engine: SearchEngine for which the indexing is intended
2913
2914 'SearchResultsAugment': Allows extension to add its code to the list of search
2915 result augmentors.
2916 &$setAugmentors: List of whole-set augmentor objects, must implement
2917 ResultSetAugmentor.
2918 &$rowAugmentors: List of per-row augmentor objects, must implement
2919 ResultAugmentor.
2920 Note that lists should be in the format name => object and the names in both
2921 lists should be distinct.
2922
2923 'SecondaryDataUpdates': DEPRECATED! Use RevisionDataUpdates or override
2924 ContentHandler::getSecondaryDataUpdates instead.
2925 Allows modification of the list of DataUpdates to perform when page content is modified.
2926 $title: Title of the page that is being edited.
2927 $oldContent: Content object representing the page's content before the edit.
2928 $recursive: bool indicating whether DataUpdates should trigger recursive
2929 updates (relevant mostly for LinksUpdate).
2930 $parserOutput: ParserOutput representing the rendered version of the page
2931 after the edit.
2932 &$updates: a list of DataUpdate objects, to be modified or replaced by
2933 the hook handler.
2934
2935 'SecuritySensitiveOperationStatus': Affect the return value from
2936 MediaWiki\Auth\AuthManager::securitySensitiveOperationStatus().
2937 &$status: (string) The status to be returned. One of the AuthManager::SEC_*
2938 constants. SEC_REAUTH will be automatically changed to SEC_FAIL if
2939 authentication isn't possible for the current session type.
2940 $operation: (string) The operation being checked.
2941 $session: (MediaWiki\Session\Session) The current session. The
2942 currently-authenticated user may be retrieved as $session->getUser().
2943 $timeSinceAuth: (int) The time since last authentication. PHP_INT_MAX if
2944 the time of last auth is unknown, or -1 if authentication is not possible.
2945
2946 'SelfLinkBegin': Called before a link to the current article is displayed to
2947 allow the display of the link to be customized.
2948 $nt: the Title object
2949 &$html: html to display for the link
2950 &$trail: optional text to display before $html
2951 &$prefix: optional text to display after $html
2952 &$ret: the value to return if your hook returns false
2953
2954 'SendWatchlistEmailNotification': Return true to send watchlist email
2955 notification
2956 $targetUser: the user whom to send watchlist email notification
2957 $title: the page title
2958 $enotif: EmailNotification object
2959
2960 'SessionCheckInfo': Validate a MediaWiki\Session\SessionInfo as it's being
2961 loaded from storage. Return false to prevent it from being used.
2962 &$reason: String rejection reason to be logged
2963 $info: MediaWiki\Session\SessionInfo being validated
2964 $request: WebRequest being loaded from
2965 $metadata: Array|false Metadata array for the MediaWiki\Session\Session
2966 $data: Array|false Data array for the MediaWiki\Session\Session
2967
2968 'SessionMetadata': Add metadata to a session being saved.
2969 $backend: MediaWiki\Session\SessionBackend being saved.
2970 &$metadata: Array Metadata to be stored. Add new keys here.
2971 $requests: Array of WebRequests potentially being saved to. Generally 0-1 real
2972 request and 0+ FauxRequests.
2973
2974 'SetupAfterCache': Called in Setup.php, after cache objects are set
2975
2976 'ShortPagesQuery': Allow extensions to modify the query used by
2977 Special:ShortPages.
2978 &$tables: tables to join in the query
2979 &$conds: conditions for the query
2980 &$joinConds: join conditions for the query
2981 &$options: options for the query
2982
2983 'ShowMissingArticle': Called when generating the output for a non-existent page.
2984 $article: The article object corresponding to the page
2985
2986 'ShowSearchHit': Customize display of search hit.
2987 $searchPage: The SpecialSearch instance.
2988 $result: The SearchResult to show
2989 $terms: Search terms, for highlighting (unreliable as search engine dependent).
2990 &$link: HTML of link to the matching page. May be modified.
2991 &$redirect: HTML of redirect info. May be modified.
2992 &$section: HTML of matching section. May be modified.
2993 &$extract: HTML of content extract. May be modified.
2994 &$score: HTML of score. May be modified.
2995 &$size: HTML of page size. May be modified.
2996 &$date: HTML of of page modification date. May be modified.
2997 &$related: HTML of additional info for the matching page. May be modified.
2998 &$html: May be set to the full HTML that should be used to represent the search
2999 hit. Must include the <li> ... </li> tags. Will only be used if the hook
3000 function returned false.
3001
3002 'ShowSearchHitTitle': Customise display of search hit title/link.
3003 &$title: Title to link to
3004 &$titleSnippet: Label for the link representing the search result. Typically the
3005 article title.
3006 $result: The SearchResult object
3007 $terms: array of search terms extracted by SearchDatabase search engines
3008 (may not be populated by other search engines).
3009 $specialSearch: The SpecialSearch object
3010 &$query: Array of query string parameters for the link representing the search
3011 result.
3012 &$attributes: Array of title link attributes, can be modified by extension.
3013
3014 'SidebarBeforeOutput': Allows to edit sidebar just before it is output by skins.
3015 Warning: This hook is run on each display. You should consider to use
3016 'SkinBuildSidebar' that is aggressively cached.
3017 $skin: Skin object
3018 &$bar: Sidebar content
3019 Modify $bar to add or modify sidebar portlets.
3020
3021 'SiteNoticeAfter': After the sitenotice/anonnotice is composed.
3022 &$siteNotice: HTML sitenotice. Alter the contents of $siteNotice to add to/alter
3023 the sitenotice/anonnotice.
3024 $skin: Skin object
3025
3026 'SiteNoticeBefore': Before the sitenotice/anonnotice is composed. Return true to
3027 allow the normal method of notice selection/rendering to work, or change the
3028 value of $siteNotice and return false to alter it.
3029 &$siteNotice: HTML returned as the sitenotice
3030 $skin: Skin object
3031
3032 'SkinAfterBottomScripts': At the end of Skin::bottomScripts().
3033 $skin: Skin object
3034 &$text: bottomScripts Text. Append to $text to add additional text/scripts after
3035 the stock bottom scripts.
3036
3037 'SkinAfterContent': Allows extensions to add text after the page content and
3038 article metadata. This hook should work in all skins. Set the &$data variable to
3039 the text you're going to add.
3040 &$data: (string) Text to be printed out directly (without parsing)
3041 $skin: Skin object
3042
3043 'SkinBuildSidebar': At the end of Skin::buildSidebar().
3044 $skin: Skin object
3045 &$bar: Sidebar contents
3046 Modify $bar to add or modify sidebar portlets.
3047
3048 'SkinCopyrightFooter': Allow for site and per-namespace customization of
3049 copyright notice.
3050 $title: displayed page title
3051 $type: 'normal' or 'history' for old/diff views
3052 &$msg: overridable message; usually 'copyright' or 'history_copyright'. This
3053 message must be in HTML format, not wikitext!
3054 &$link: overridable HTML link to be passed into the message as $1
3055 &$forContent: DEPRECATED! overridable flag if copyright footer is shown in
3056 content language.
3057
3058 'SkinEditSectionLinks': Modify the section edit links
3059 $skin: Skin object rendering the UI
3060 $title: Title object for the title being linked to (may not be the same as
3061 the page title, if the section is included from a template)
3062 $section: The designation of the section being pointed to, to be included in
3063 the link, like "&section=$section"
3064 $tooltip: The default tooltip. Escape before using.
3065 By default, this is wrapped in the 'editsectionhint' message.
3066 &$result: Array containing all link detail arrays. Each link detail array should
3067 contain the following keys:
3068 - targetTitle - Target Title object
3069 - text - String for the text
3070 - attribs - Array of attributes
3071 - query - Array of query parameters to add to the URL
3072 $lang: The language code to use for the link in the wfMessage function
3073
3074 'SkinGetPoweredBy': TODO
3075 &$text: additional 'powered by' icons in HTML. Note: Modern skin does not use
3076 the MediaWiki icon but plain text instead.
3077 $skin: Skin object
3078
3079 'SkinPreloadExistence': Supply titles that should be added to link existence
3080 cache before the page is rendered.
3081 &$titles: Array of Title objects
3082 $skin: Skin object
3083
3084 'SkinSubPageSubtitle': At the beginning of Skin::subPageSubtitle().
3085 If false is returned $subpages will be used instead of the HTML
3086 subPageSubtitle() generates.
3087 If true is returned, $subpages will be ignored and the rest of
3088 subPageSubtitle() will run.
3089 &$subpages: Subpage links HTML
3090 $skin: Skin object
3091 $out: OutputPage object
3092
3093 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink': After creating the "permanent
3094 link" tab.
3095 &$sktemplate: SkinTemplate object
3096 &$nav_urls: array of tabs
3097 &$revid: The revision id of the permanent link
3098 &$revid2: The revision id of the permanent link, second time
3099
3100 'SkinTemplateGetLanguageLink': After building the data for a language link from
3101 which the actual html is constructed.
3102 &$languageLink: array containing data about the link. The following keys can be
3103 modified: href, text, title, class, lang, hreflang. Each of them is a string.
3104 $languageLinkTitle: Title object belonging to the external language link.
3105 $title: Title object of the page the link belongs to.
3106 $outputPage: The OutputPage object the links are built from.
3107
3108 'SkinTemplateNavigation': Called on content pages after the tabs have been
3109 added, but before variants have been added.
3110 &$sktemplate: SkinTemplate object
3111 &$links: Structured navigation links. This is used to alter the navigation for
3112 skins which use buildNavigationUrls such as Vector.
3113
3114 'SkinTemplateNavigation::SpecialPage': Called on special pages after the special
3115 tab is added but before variants have been added.
3116 &$sktemplate: SkinTemplate object
3117 &$links: Structured navigation links. This is used to alter the navigation for
3118 skins which use buildNavigationUrls such as Vector.
3119
3120 'SkinTemplateNavigation::Universal': Called on both content and special pages
3121 after variants have been added.
3122 &$sktemplate: SkinTemplate object
3123 &$links: Structured navigation links. This is used to alter the navigation for
3124 skins which use buildNavigationUrls such as Vector.
3125
3126 'SkinTemplateOutputPageBeforeExec': Before SkinTemplate::outputPage() starts
3127 page output.
3128 &$sktemplate: SkinTemplate object
3129 &$tpl: QuickTemplate engine object
3130
3131 'SkinTemplatePreventOtherActiveTabs': Use this to prevent showing active tabs.
3132 &$sktemplate: SkinTemplate object
3133 &$res: set to true to prevent active tabs
3134
3135 'SkinTemplateTabAction': Override SkinTemplate::tabAction().
3136 You can either create your own array, or alter the parameters for
3137 the normal one.
3138 &$sktemplate: The SkinTemplate instance.
3139 $title: Title instance for the page.
3140 $message: Visible label of tab.
3141 $selected: Whether this is a selected tab.
3142 $checkEdit: Whether or not the action=edit query should be added if appropriate.
3143 &$classes: Array of CSS classes to apply.
3144 &$query: Query string to add to link.
3145 &$text: Link text.
3146 &$result: Complete assoc. array if you want to return true.
3147
3148 'SkinTemplateToolboxEnd': Called by SkinTemplate skins after toolbox links have
3149 been rendered (useful for adding more).
3150 &$sk: The QuickTemplate based skin template running the hook.
3151 $dummy: Called when SkinTemplateToolboxEnd is used from a BaseTemplate skin,
3152 extensions that add support for BaseTemplateToolbox should watch for this
3153 dummy parameter with "$dummy=false" in their code and return without echoing
3154 any HTML to avoid creating duplicate toolbox items.
3155
3156 'SoftwareInfo': Called by Special:Version for returning information about the
3157 software.
3158 &$software: The array of software in format 'name' => 'version'. See
3159 SpecialVersion::softwareInformation().
3160
3161 'SpecialBlockModifyFormFields': Add more fields to Special:Block
3162 $sp: SpecialPage object, for context
3163 &$fields: Current HTMLForm fields
3164
3165 'SpecialContributionsBeforeMainOutput': Before the form on Special:Contributions
3166 $id: User id number, only provided for backwards-compatibility
3167 $user: User object representing user contributions are being fetched for
3168 $sp: SpecialPage instance, providing context
3169
3170 'SpecialContributions::formatRow::flags': Called before rendering a
3171 Special:Contributions row.
3172 $context: IContextSource object
3173 $row: Revision information from the database
3174 &$flags: List of flags on this row
3175
3176 'SpecialContributions::getForm::filters': Called with a list of filters to render
3177 on Special:Contributions.
3178 $sp: SpecialContributions object, for context
3179 &$filters: List of filters rendered as HTML
3180
3181 'SpecialListusersDefaultQuery': Called right before the end of
3182 UsersPager::getDefaultQuery().
3183 $pager: The UsersPager instance
3184 &$query: The query array to be returned
3185
3186 'SpecialListusersFormatRow': Called right before the end of
3187 UsersPager::formatRow().
3188 &$item: HTML to be returned. Will be wrapped in an <li> after the hook finishes
3189 $row: Database row object
3190
3191 'SpecialListusersHeader': Called after adding the submit button in
3192 UsersPager::getPageHeader().
3193 $pager: The UsersPager instance
3194 &$out: The header HTML
3195
3196 'SpecialListusersHeaderForm': Called before adding the submit button in
3197 UsersPager::getPageHeader().
3198 $pager: The UsersPager instance
3199 &$out: The header HTML
3200
3201 'SpecialListusersQueryInfo': Called right before the end of.
3202 UsersPager::getQueryInfo()
3203 $pager: The UsersPager instance
3204 &$query: The query array to be returned
3205
3206 'SpecialLogAddLogSearchRelations': Add log relations to the current log
3207 $type: String of the log type
3208 $request: WebRequest object for getting the value provided by the current user
3209 &$qc: Array for query conditions to add
3210
3211 'SpecialMovepageAfterMove': Called after moving a page.
3212 &$movePage: MovePageForm object
3213 &$oldTitle: old title (object)
3214 &$newTitle: new title (object)
3215
3216 'SpecialMuteModifyFormFields': Add more fields to Special:Mute
3217 $sp: SpecialPage object, for context
3218 &$fields: Current HTMLForm fields descriptors
3219
3220 'SpecialMuteSubmit': DEPRECATED since 1.34! Used only for instrumentation on SpecialMute
3221 $data: Array containing information about submitted options on SpecialMute form
3222
3223 'SpecialNewpagesConditions': Called when building sql query for
3224 Special:NewPages.
3225 &$special: NewPagesPager object (subclass of ReverseChronologicalPager)
3226 $opts: FormOptions object containing special page options
3227 &$conds: array of WHERE conditionals for query
3228 &$tables: array of tables to be queried
3229 &$fields: array of columns to select
3230 &$join_conds: join conditions for the tables
3231
3232 'SpecialNewPagesFilters': Called after building form options at NewPages.
3233 $special: the special page object
3234 &$filters: associative array of filter definitions. The keys are the HTML
3235 name/URL parameters. Each key maps to an associative array with a 'msg'
3236 (message key) and a 'default' value.
3237
3238 'SpecialPage_initList': Called when setting up SpecialPageFactory::$list, use
3239 this hook to remove a core special page or conditionally register special pages.
3240 &$list: list (array) of core special pages
3241
3242 'SpecialPageAfterExecute': Called after SpecialPage::execute.
3243 $special: the SpecialPage object
3244 $subPage: the subpage string or null if no subpage was specified
3245
3246 'SpecialPageBeforeExecute': Called before SpecialPage::execute.
3247 Return false to prevent execution.
3248 $special: the SpecialPage object
3249 $subPage: the subpage string or null if no subpage was specified
3250
3251 'SpecialPageBeforeFormDisplay': Before executing the HTMLForm object.
3252 $name: name of the special page
3253 &$form: HTMLForm object
3254
3255 'SpecialPasswordResetOnSubmit': When executing a form submission on
3256 Special:PasswordReset.
3257 &$users: array of User objects.
3258 $data: array of data submitted by the user
3259 &$error: string, error code (message key) used to describe to error (out
3260 parameter). The hook needs to return false when setting this, otherwise it
3261 will have no effect.
3262
3263 'SpecialRandomGetRandomTitle': Called during the execution of Special:Random,
3264 use this to change some selection criteria or substitute a different title.
3265 &$randstr: The random number from wfRandom()
3266 &$isRedir: Boolean, whether to select a redirect or non-redirect
3267 &$namespaces: An array of namespace indexes to get the title from
3268 &$extra: An array of extra SQL statements
3269 &$title: If the hook returns false, a Title object to use instead of the
3270 result from the normal query
3271
3272 'SpecialRecentChangesPanel': Called when building form options in
3273 SpecialRecentChanges.
3274 &$extraOpts: array of added items, to which can be added
3275 $opts: FormOptions for this request
3276
3277 'SpecialResetTokensTokens': Called when building token list for
3278 SpecialResetTokens.
3279 &$tokens: array of token information arrays in the format of
3280 [
3281 'preference' => '<preference-name>',
3282 'label-message' => '<message-key>',
3283 ]
3284
3285 'SpecialSearchCreateLink': Called when making the message to create a page or
3286 go to the existing page.
3287 $t: title object searched for
3288 &$params: an array of the default message name and page title (as parameter)
3289
3290 'SpecialSearchGoResult': If a hook returns false the 'go' feature will be
3291 canceled and a normal search will be performed. Returning true without setting
3292 $url does a standard redirect to $title. Setting $url redirects to the
3293 specified URL.
3294 $term: The string the user searched for
3295 $title: The title the 'go' feature has decided to forward the user to
3296 &$url: Initially null, hook subscribers can set this to specify the final url to
3297 redirect to
3298
3299 'SpecialSearchNogomatch': Called when the 'Go' feature is triggered (generally
3300 from autocomplete search other than the main bar on Special:Search) and the
3301 target doesn't exist. Full text search results are generated after this hook is
3302 called.
3303 &$title: title object generated from the text entered by the user
3304
3305 'SpecialSearchPowerBox': The equivalent of SpecialSearchProfileForm for
3306 the advanced form, a.k.a. power search box.
3307 &$showSections: an array to add values with more options to
3308 $term: the search term (not a title object)
3309 &$opts: an array of hidden options (containing 'redirs' and 'profile')
3310
3311 'SpecialSearchProfileForm': Allows modification of search profile forms.
3312 $search: special page object
3313 &$form: String: form html
3314 $profile: String: current search profile
3315 $term: String: search term
3316 $opts: Array: key => value of hidden options for inclusion in custom forms
3317
3318 'SpecialSearchProfiles': Allows modification of search profiles.
3319 &$profiles: profiles, which can be modified.
3320
3321 'SpecialSearchResults': Called before search result display
3322 $term: string of search term
3323 &$titleMatches: empty or ISearchResultSet object
3324 &$textMatches: empty or ISearchResultSet object
3325
3326 'SpecialSearchResultsPrepend': Called immediately before returning HTML
3327 on the search results page. Useful for including an external search
3328 provider. To disable the output of MediaWiki search output, return
3329 false.
3330 $specialSearch: SpecialSearch object ($this)
3331 $output: $wgOut
3332 $term: Search term specified by the user
3333
3334 'SpecialSearchResultsAppend': Called immediately before returning HTML
3335 on the search results page. Useful for including a feedback link.
3336 $specialSearch: SpecialSearch object ($this)
3337 $output: $wgOut
3338 $term: Search term specified by the user
3339
3340 'SpecialSearchSetupEngine': Allows passing custom data to search engine.
3341 $search: SpecialSearch special page object
3342 $profile: String: current search profile
3343 $engine: the search engine
3344
3345 'SpecialStatsAddExtra': Add extra statistic at the end of Special:Statistics.
3346 &$extraStats: Array to save the new stats
3347 $extraStats['<name of statistic>'] => <value>;
3348 <value> can be an array with the keys "name" and "number":
3349 "name" is the HTML to be displayed in the name column
3350 "number" is the number to be displayed.
3351 or, <value> can be the number to be displayed and <name> is the
3352 message key to use in the name column,
3353 $context: IContextSource object
3354
3355 'SpecialTrackingCategories::preprocess': Called after LinkBatch on
3356 Special:TrackingCategories
3357 $specialPage: The SpecialTrackingCategories object
3358 $trackingCategories: Array of data from Special:TrackingCategories with msg and
3359 cats
3360
3361 'SpecialTrackingCategories::generateCatLink': Called for each cat link on
3362 Special:TrackingCategories
3363 $specialPage: The SpecialTrackingCategories object
3364 $catTitle: The Title object of the linked category
3365 &$html: The Result html
3366
3367 'SpecialUploadComplete': Called after successfully uploading a file from
3368 Special:Upload.
3369 &$form: The SpecialUpload object
3370
3371 'SpecialVersionVersionUrl': Called when building the URL for Special:Version.
3372 $wgVersion: Current $wgVersion for you to use
3373 &$versionUrl: Raw url to link to (eg: release notes)
3374
3375 'SpecialWatchlistGetNonRevisionTypes': Called when building sql query for
3376 SpecialWatchlist. Allows extensions to register custom values they have
3377 inserted to rc_type so they can be returned as part of the watchlist.
3378 &$nonRevisionTypes: array of values in the rc_type field of recentchanges table
3379
3380 'TestCanonicalRedirect': Called when about to force a redirect to a canonical
3381 URL for a title when we have no other parameters on the URL. Gives a chance for
3382 extensions that alter page view behavior radically to abort that redirect or
3383 handle it manually.
3384 $request: WebRequest
3385 $title: Title of the currently found title obj
3386 $output: OutputPage object
3387
3388 'ThumbnailBeforeProduceHTML': Called before an image HTML is about to be
3389 rendered (by ThumbnailImage:toHtml method).
3390 $thumbnail: the ThumbnailImage object
3391 &$attribs: image attribute array
3392 &$linkAttribs: image link attribute array
3393
3394 'TitleArrayFromResult': Called when creating an TitleArray object from a
3395 database result.
3396 &$titleArray: set this to an object to override the default object returned
3397 $res: database result used to create the object
3398
3399 'TitleExists': Called when determining whether a page exists at a given title.
3400 $title: The title being tested.
3401 &$exists: Whether the title exists.
3402
3403 'TitleGetEditNotices': Allows extensions to add edit notices
3404 $title: The Title object for the page the edit notices are for
3405 $oldid: Revision ID that the edit notices are for (or 0 for latest)
3406 &$notices: Array of notices. Keys are i18n message keys, values are
3407 parseAsBlock()ed messages.
3408
3409 'TitleGetRestrictionTypes': Allows extensions to modify the types of protection
3410 that can be applied.
3411 $title: The title in question.
3412 &$types: The types of protection available.
3413
3414 'TitleIsAlwaysKnown': Called when determining if a page exists. Allows
3415 overriding default behavior for determining if a page exists. If $isKnown is
3416 kept as null, regular checks happen. If it's a boolean, this value is returned
3417 by the isKnown method.
3418 $title: Title object that is being checked
3419 &$isKnown: Boolean|null; whether MediaWiki currently thinks this page is known
3420
3421 'TitleIsMovable': Called when determining if it is possible to move a page. Note
3422 that this hook is not called for interwiki pages or pages in immovable
3423 namespaces: for these, isMovable() always returns false.
3424 $title: Title object that is being checked
3425 &$result: Boolean; whether MediaWiki currently thinks this page is movable.
3426 Hooks may change this value to override the return value of
3427 Title::isMovable().
3428
3429
3430 'TitleMove': Before moving an article (title).
3431 $old: old title
3432 $nt: new title
3433 $user: user who does the move
3434 $reason: string of the reason provided by the user
3435 &$status: Status object. To abort the move, add a fatal error to this object
3436 (i.e. call $status->fatal()).
3437
3438 'TitleMoveStarting': Before moving an article (title), but just after the atomic
3439 DB section starts.
3440 $old: old title
3441 $nt: new title
3442 $user: user who does the move
3443
3444 'TitleMoveComplete': After moving an article (title), post-commit.
3445 &$old: old title
3446 &$nt: new title
3447 &$user: user who did the move
3448 $pageid: database ID of the page that's been moved
3449 $redirid: database ID of the created redirect
3450 $reason: reason for the move
3451 $revision: the Revision created by the move
3452
3453 'TitleMoveCompleting': After moving an article (title), pre-commit.
3454 $old: old title
3455 $nt: new title
3456 $user: user who did the move
3457 $pageid: database ID of the page that's been moved
3458 $redirid: database ID of the created redirect
3459 $reason: reason for the move
3460 $revision: the Revision created by the move
3461
3462 'TitleQuickPermissions': Called from Title::checkQuickPermissions to add to
3463 or override the quick permissions check.
3464 $title: The Title object being accessed
3465 $user: The User performing the action
3466 $action: Action being performed
3467 &$errors: Array of errors
3468 $doExpensiveQueries: Whether to do expensive DB queries
3469 $short: Whether to return immediately on first error
3470
3471 'TitleReadWhitelist': Called at the end of read permissions checks, just before
3472 adding the default error message if nothing allows the user to read the page. If
3473 a handler wants a title to *not* be whitelisted, it should also return false.
3474 $title: Title object being checked against
3475 $user: Current user object
3476 &$whitelisted: Boolean value of whether this title is whitelisted
3477
3478 'TitleSquidURLs': Called to determine which URLs to purge from HTTP caches.
3479 $title: Title object to purge
3480 &$urls: An array of URLs to purge from the caches, to be manipulated.
3481
3482 'UnblockUser': Before an IP address or user is unblocked.
3483 &$block: The Block object about to be saved
3484 &$user: The user performing the unblock (not the one being unblocked)
3485 &$reason: If the hook is aborted, the error message to be returned in an array
3486
3487 'UnblockUserComplete': After an IP address or user has been unblocked.
3488 $block: The Block object that was saved
3489 $user: The user who performed the unblock (not the one being unblocked)
3490
3491 'UndeleteForm::showHistory': Called in UndeleteForm::showHistory, after a
3492 PageArchive object has been created but before any further processing is done.
3493 &$archive: PageArchive object
3494 $title: Title object of the page that we're viewing
3495
3496 'UndeleteForm::showRevision': Called in UndeleteForm::showRevision, after a
3497 PageArchive object has been created but before any further processing is done.
3498 &$archive: PageArchive object
3499 $title: Title object of the page that we're viewing
3500
3501 'UndeleteForm::undelete': Called in UndeleteForm::undelete, after checking that
3502 the site is not in read-only mode, that the Title object is not null and after
3503 a PageArchive object has been constructed but before performing any further
3504 processing.
3505 &$archive: PageArchive object
3506 $title: Title object of the page that we're about to undelete
3507
3508 'UndeletePageToolLinks': Add one or more links to edit page subtitle when a page
3509 has been previously deleted.
3510 $context: IContextSource (object)
3511 $linkRenderer: LinkRenderer instance
3512 &$links: Array of HTML strings
3513
3514 'UndeleteShowRevision': Called when showing a revision in Special:Undelete.
3515 $title: title object related to the revision
3516 $rev: revision (object) that will be viewed
3517
3518 'UnitTestsAfterDatabaseSetup': Called right after MediaWiki's test
3519 infrastructure has finished creating/duplicating core tables for unit tests.
3520 $database: Database in question
3521 $prefix: Table prefix to be used in unit tests
3522
3523 'UnitTestsBeforeDatabaseTeardown': Called right before MediaWiki tears down its
3524 database infrastructure used for unit tests.
3525
3526 'UnitTestsList': Called when building a list of paths containing PHPUnit tests.
3527 Since 1.24: Paths pointing to a directory will be recursively scanned for
3528 test case files matching the suffix "Test.php".
3529 &$paths: list of test cases and directories to search.
3530
3531 'UnwatchArticle': Before a watch is removed from an article.
3532 &$user: user watching
3533 &$page: WikiPage object to be removed
3534 &$status: Status object to be returned if the hook returns false
3535
3536 'UnwatchArticleComplete': After a watch is removed from an article.
3537 $user: user that watched
3538 &$page: WikiPage object that was watched
3539
3540 'UpdateUserMailerFormattedPageStatus': Before notification email gets sent.
3541 &$formattedPageStatus: list of valid page states
3542
3543 'UploadComplete': Upon completion of a file upload.
3544 &$uploadBase: UploadBase (or subclass) object. File can be accessed by
3545 $uploadBase->getLocalFile().
3546
3547 'UploadCreateFromRequest': When UploadBase::createFromRequest has been called.
3548 $type: (string) the requested upload type
3549 &$className: the class name of the Upload instance to be created
3550
3551 'UploadForm:BeforeProcessing': At the beginning of processUpload(). Lets you
3552 poke at member variables like $mUploadDescription before the file is saved.
3553 Do not use this hook to break upload processing.
3554 This will return the user to a blank form with no error message;
3555 use UploadVerifyUpload or UploadVerifyFile instead.
3556 &$upload: SpecialUpload object
3557
3558 'UploadForm:getInitialPageText': After the initial page text for file uploads
3559 is generated, to allow it to be altered.
3560 &$pageText: the page text
3561 $msg: array of header messages
3562 $config: Config object
3563
3564 'UploadForm:initial': Before the upload form is generated. You might set the
3565 member-variables $uploadFormTextTop and $uploadFormTextAfterSummary to inject
3566 text (HTML) either before or after the editform.
3567 &$upload: SpecialUpload object
3568
3569 'UploadFormInitDescriptor': After the descriptor for the upload form as been
3570 assembled.
3571 &$descriptor: (array) the HTMLForm descriptor
3572
3573 'UploadFormSourceDescriptors': after the standard source inputs have been
3574 added to the descriptor
3575 &$descriptor: (array) the HTMLForm descriptor
3576 &$radio: Boolean, if source type should be shown as radio button
3577 $selectedSourceType: The selected source type
3578
3579 'UploadStashFile': Before a file is stashed (uploaded to stash).
3580 Note that code which has not been updated for MediaWiki 1.28 may not call this
3581 hook. If your extension absolutely, positively must prevent some files from
3582 being uploaded, use UploadVerifyFile or UploadVerifyUpload.
3583 $upload: (object) An instance of UploadBase, with all info about the upload
3584 $user: (object) An instance of User, the user uploading this file
3585 $props: (array|null) File properties, as returned by
3586 MWFileProps::getPropsFromPath(). Note this is not always guaranteed to be set,
3587 e.g. in test scenarios. Call MWFileProps::getPropsFromPath() yourself in case
3588 you need the information.
3589 &$error: output: If the file stashing should be prevented, set this to the
3590 reason in the form of [ messagename, param1, param2, ... ] or a
3591 MessageSpecifier instance (you might want to use ApiMessage to provide machine
3592 -readable details for the API).
3593
3594 'UploadVerifyFile': extra file verification, based on MIME type, etc. Preferred
3595 in most cases over UploadVerification.
3596 $upload: (object) an instance of UploadBase, with all info about the upload
3597 $mime: (string) The uploaded file's MIME type, as detected by MediaWiki.
3598 Handlers will typically only apply for specific MIME types.
3599 &$error: (object) output: true if the file is valid. Otherwise, set this to the
3600 reason in the form of [ messagename, param1, param2, ... ] or a
3601 MessageSpecifier instance (you might want to use ApiMessage to provide machine
3602 -readable details for the API).
3603
3604 'UploadVerifyUpload': Upload verification, based on both file properties like
3605 MIME type (same as UploadVerifyFile) and the information entered by the user
3606 (upload comment, file page contents etc.).
3607 $upload: (object) An instance of UploadBase, with all info about the upload
3608 $user: (object) An instance of User, the user uploading this file
3609 $props: (array|null) File properties, as returned by
3610 MWFileProps::getPropsFromPath(). Note this is not always guaranteed to be set,
3611 e.g. in test scenarios. Call MWFileProps::getPropsFromPath() yourself in case
3612 you need the information.
3613 $comment: (string) Upload log comment (also used as edit summary)
3614 $pageText: (string) File description page text (only used for new uploads)
3615 &$error: output: If the file upload should be prevented, set this to the reason
3616 in the form of [ messagename, param1, param2, ... ] or a MessageSpecifier
3617 instance (you might want to use ApiMessage to provide machine-readable details
3618 for the API).
3619
3620 'UserIsBot': when determining whether a user is a bot account
3621 $user: the user
3622 &$isBot: whether this is user a bot or not (boolean)
3623
3624 'User::mailPasswordInternal': before creation and mailing of a user's new
3625 temporary password
3626 &$user: the user who sent the message out
3627 &$ip: IP of the user who sent the message out
3628 &$u: the account whose new password will be set
3629
3630 'UserAddGroup': Called when adding a group or changing a group's expiry; return
3631 false to override stock group addition.
3632 $user: the user object that is to have a group added
3633 &$group: the group to add; can be modified
3634 &$expiry: the expiry time in TS_MW format, or null if the group is not to
3635 expire; can be modified
3636
3637 'UserArrayFromResult': Called when creating an UserArray object from a database
3638 result.
3639 &$userArray: set this to an object to override the default object returned
3640 $res: database result used to create the object
3641
3642 'userCan': To interrupt/advise the "user can do X to Y article" check. If you
3643 want to display an error message, try getUserPermissionsErrors.
3644 &$title: Title object being checked against
3645 &$user: Current user object
3646 $action: Action being checked
3647 &$result: Pointer to result returned if hook returns false. If null is returned,
3648 userCan checks are continued by internal code.
3649
3650 'UserCanSendEmail': To override User::canSendEmail() permission check.
3651 &$user: User (object) whose permission is being checked
3652 &$canSend: bool set on input, can override on output
3653
3654 'UserClearNewTalkNotification': Called when clearing the "You have new
3655 messages!" message, return false to not delete it.
3656 &$user: User (object) that will clear the message
3657 $oldid: ID of the talk page revision being viewed (0 means the most recent one)
3658
3659 'UserEffectiveGroups': Called in User::getEffectiveGroups().
3660 &$user: User to get groups for
3661 &$groups: Current effective groups
3662
3663 'UserGetAllRights': After calculating a list of all available rights.
3664 &$rights: Array of rights, which may be added to.
3665
3666 'UserGetDefaultOptions': After fetching the core default, this hook is run right
3667 before returning the options to the caller. Warning: This hook is called for
3668 every call to User::getDefaultOptions(), which means it's potentially called
3669 dozens or hundreds of times. You may want to cache the results of non-trivial
3670 operations in your hook function for this reason.
3671 &$defaultOptions: Array of preference keys and their default values.
3672
3673 'UserGetEmail': Called when getting an user email address.
3674 $user: User object
3675 &$email: email, change this to override local email
3676
3677 'UserGetEmailAuthenticationTimestamp': Called when getting the timestamp of
3678 email authentication.
3679 $user: User object
3680 &$timestamp: timestamp, change this to override local email authentication
3681 timestamp
3682
3683 'UserGetLanguageObject': Called when getting user's interface language object.
3684 $user: User object
3685 &$code: Language code that will be used to create the object
3686 $context: IContextSource object
3687
3688 'UserGetReservedNames': Allows to modify $wgReservedUsernames at run time.
3689 &$reservedUsernames: $wgReservedUsernames
3690
3691 'UserGetRights': Called in User::getRights().
3692 $user: User to get rights for
3693 &$rights: Current rights
3694
3695 'UserGetRightsRemove': Called in User::getRights(). This hook override
3696 the UserGetRights hook. It can be used to remove rights from user
3697 and ensure that will not be reinserted by the other hook callbacks
3698 therefore this hook should not be used to add any rights, use UserGetRights instead.
3699 $user: User to get rights for
3700 &$rights: Current rights
3701
3702 'UserGroupsChanged': Called after user groups are changed.
3703 $user: User whose groups changed
3704 $added: Groups added
3705 $removed: Groups removed
3706 $performer: User who performed the change, false if via autopromotion
3707 $reason: The reason, if any, given by the user performing the change,
3708 false if via autopromotion.
3709 $oldUGMs: An associative array (group name => UserGroupMembership object) of
3710 the user's group memberships before the change.
3711 $newUGMs: An associative array (group name => UserGroupMembership object) of
3712 the user's current group memberships.
3713
3714 'UserIsBlockedFrom': Check if a user is blocked from a specific page (for
3715 specific block exemptions if a user is already blocked).
3716 $user: User in question
3717 $title: Title of the page in question
3718 &$blocked: Out-param, whether or not the user is blocked from that page.
3719 &$allowUsertalk: If the user is blocked, whether or not the block allows users
3720 to edit their own user talk pages.
3721
3722 'UserIsBlockedGlobally': Check if user is blocked on all wikis.
3723 &$user: User object
3724 $ip: User's IP address
3725 &$blocked: Whether the user is blocked, to be modified by the hook
3726 &$block: The Block object, to be modified by the hook
3727
3728 'UserIsEveryoneAllowed': Check if all users are allowed some user right; return
3729 false if a UserGetRights hook might remove the named right.
3730 $right: The user right being checked
3731
3732 'UserIsHidden': Check if the user's name should be hidden. See User::isHidden().
3733 $user: User in question.
3734 &$hidden: Set true if the user's name should be hidden.
3735
3736 'UserIsLocked': Check if the user is locked. See User::isLocked().
3737 $user: User in question.
3738 &$locked: Set true if the user should be locked.
3739
3740 'UserLoadAfterLoadFromSession': Called to authenticate users on external or
3741 environmental means; occurs after session is loaded.
3742 $user: user object being loaded
3743
3744 'UserLoadDefaults': Called when loading a default user.
3745 $user: user object
3746 $name: user name
3747
3748 'UserLoadFromDatabase': Called when loading a user from the database.
3749 $user: user object
3750 &$s: database query object
3751
3752 'UserLoadOptions': When user options/preferences are being loaded from the
3753 database.
3754 $user: User object
3755 &$options: Options, can be modified.
3756
3757 'UserLoggedIn': Called after a user is logged in
3758 $user: User object for the logged-in user
3759
3760 'UserLoginComplete': Show custom content after a user has logged in via the Web
3761 interface. For functionality that needs to run after any login (API or web) use
3762 UserLoggedIn.
3763 &$user: the user object that was created on login
3764 &$inject_html: Any HTML to inject after the "logged in" message.
3765 $direct: (bool) The hook is called directly after a successful login. This will
3766 only happen once per login. A UserLoginComplete call with direct=false can
3767 happen when the user visits the login page while already logged in.
3768
3769 'UserLogout': Before a user logs out.
3770 &$user: the user object that is about to be logged out
3771
3772 'UserLogoutComplete': After a user has logged out.
3773 &$user: the user object _after_ logout (won't have name, ID, etc.)
3774 &$inject_html: Any HTML to inject after the "logged out" message.
3775 $oldName: name of the user before logout (string)
3776
3777 'UserMailerChangeReturnPath': Called to generate a VERP return address
3778 when UserMailer sends an email, with a bounce handling extension.
3779 $to: Array of MailAddress objects for the recipients
3780 &$returnPath: The return address string
3781
3782 'UserMailerSplitTo': Called in UserMailer::send() to give extensions a chance
3783 to split up an email with multiple the To: field into separate emails.
3784 &$to: array of MailAddress objects; unset the ones which should be mailed
3785 separately
3786
3787 'UserMailerTransformContent': Called in UserMailer::send() to change email
3788 contents. Extensions can block sending the email by returning false and setting
3789 $error.
3790 $to: array of MailAdresses of the targets
3791 $from: MailAddress of the sender
3792 &$body: email body, either a string (for plaintext emails) or an array with
3793 'text' and 'html' keys
3794 &$error: should be set to an error message string
3795
3796 'UserMailerTransformMessage': Called in UserMailer::send() to change email after
3797 it has gone through the MIME transform. Extensions can block sending the email
3798 by returning false and setting $error.
3799 $to: array of MailAdresses of the targets
3800 $from: MailAddress of the sender
3801 &$subject: email subject (not MIME encoded)
3802 &$headers: email headers (except To: and Subject:) as an array of header
3803 name => value pairs
3804 &$body: email body (in MIME format) as a string
3805 &$error: should be set to an error message string
3806
3807 'UserRemoveGroup': Called when removing a group; return false to override stock
3808 group removal.
3809 $user: the user object that is to have a group removed
3810 &$group: the group to be removed, can be modified
3811
3812 'UserRequiresHTTPS': Called to determine whether a user needs
3813 to be switched to HTTPS.
3814 $user: User in question.
3815 &$https: Boolean whether $user should be switched to HTTPS.
3816
3817 'UserResetAllOptions': Called in User::resetOptions() when user preferences
3818 have been requested to be reset. This hook can be used to exclude certain
3819 options from being reset even when the user has requested all prefs to be reset,
3820 because certain options might be stored in the user_properties database table
3821 despite not being visible and editable via Special:Preferences.
3822 $user: the User (object) whose preferences are being reset
3823 &$newOptions: array of new (site default) preferences
3824 $options: array of the user's old preferences
3825 $resetKinds: array containing the kinds of preferences to reset
3826
3827 'UserRetrieveNewTalks': Called when retrieving "You have new messages!"
3828 message(s).
3829 &$user: user retrieving new talks messages
3830 &$talks: array of new talks page(s)
3831
3832 'UserSaveOptions': Called just before saving user preferences. Hook handlers can
3833 either add or manipulate options, or reset one back to it's default to block
3834 changing it. Hook handlers are also allowed to abort the process by returning
3835 false, e.g. to save to a global profile instead. Compare to the UserSaveSettings
3836 hook, which is called after the preferences have been saved.
3837 $user: The User for which the options are going to be saved
3838 &$options: The users options as an associative array, modifiable
3839
3840 'UserSaveSettings': Called directly after user preferences (user_properties in
3841 the database) have been saved. Compare to the UserSaveOptions hook, which is
3842 called before.
3843 $user: The User for which the options have been saved
3844
3845 'UserSendConfirmationMail': Called just before a confirmation email is sent to
3846 a user. Hook handlers can modify the email that will be sent.
3847 $user: The User for which the confirmation email is going to be sent
3848 &$mail: Associative array describing the email, with the following keys:
3849 - subject: Subject line of the email
3850 - body: Email body. Can be a string, or an array with keys 'text' and 'html'
3851 - from: User object, or null meaning $wgPasswordSender will be used
3852 - replyTo: MailAddress object or null
3853 $info: Associative array with additional information:
3854 - type: 'created' if the user's account was just created; 'set' if the user
3855 set an email address when they previously didn't have one; 'changed' if
3856 the user had an email address and changed it
3857 - ip: The IP address from which the user set/changed their email address
3858 - confirmURL: URL the user should visit to confirm their email
3859 - invalidateURL: URL the user should visit to invalidate confirmURL
3860 - expiration: time and date when confirmURL expires
3861
3862 'UserSetCookies': DEPRECATED since 1.27! If you're trying to replace core
3863 session cookie handling, you want to create a subclass of
3864 MediaWiki\Session\CookieSessionProvider instead. Otherwise, you can no longer
3865 count on user data being saved to cookies versus some other mechanism.
3866 Called when setting user cookies.
3867 $user: User object
3868 &$session: session array, will be added to the session
3869 &$cookies: cookies array mapping cookie name to its value
3870
3871 'UserSetEmail': Called when changing user email address.
3872 $user: User object
3873 &$email: new email, change this to override new email address
3874
3875 'UserSetEmailAuthenticationTimestamp': Called when setting the timestamp of
3876 email authentication.
3877 $user: User object
3878 &$timestamp: new timestamp, change this to override local email
3879 authentication timestamp
3880
3881 'UserToolLinksEdit': Called when generating a list of user tool links, e.g.
3882 "Foobar (Talk | Contribs | Block)".
3883 $userId: User id of the current user
3884 $userText: User name of the current user
3885 &$items: Array of user tool links as HTML fragments
3886
3887 'UsersPagerDoBatchLookups': Called in UsersPager::doBatchLookups() to give
3888 extensions providing user group data from an alternate source a chance to add
3889 their data into the cache array so that things like global user groups are
3890 displayed correctly in Special:ListUsers.
3891 $dbr: Read-only database handle
3892 $userIds: Array of user IDs whose groups we should look up
3893 &$cache: Array of user ID -> (array of internal group name (e.g. 'sysop') ->
3894 UserGroupMembership object)
3895 &$groups: Array of group name -> bool true mappings for members of a given user
3896 group
3897
3898 'ValidateExtendedMetadataCache': Called to validate the cached metadata in
3899 FormatMetadata::getExtendedMeta (return false means cache will be
3900 invalidated and GetExtendedMetadata hook called again).
3901 $timestamp: The timestamp metadata was generated
3902 $file: The file the metadata is for
3903
3904 'WantedPages::getQueryInfo': Called in WantedPagesPage::getQueryInfo(), can be
3905 used to alter the SQL query which gets the list of wanted pages.
3906 &$wantedPages: WantedPagesPage object
3907 &$query: query array, see QueryPage::getQueryInfo() for format documentation
3908
3909 'WatchArticle': Before a watch is added to an article.
3910 &$user: user that will watch
3911 &$page: WikiPage object to be watched
3912 &$status: Status object to be returned if the hook returns false
3913
3914 'WatchArticleComplete': After a watch is added to an article.
3915 &$user: user that watched
3916 &$page: WikiPage object watched
3917
3918 'WatchedItemQueryServiceExtensions': Create a WatchedItemQueryServiceExtension.
3919 &$extensions: Add WatchedItemQueryServiceExtension objects to this array
3920 $watchedItemQueryService: Service object
3921
3922 'WatchlistEditorBeforeFormRender': Before building the Special:EditWatchlist
3923 form, used to manipulate the list of pages or preload data based on that list.
3924 &$watchlistInfo: array of watchlisted pages in
3925 [namespaceId => ['title1' => 1, 'title2' => 1]] format
3926
3927 'WatchlistEditorBuildRemoveLine': when building remove lines in
3928 Special:Watchlist/edit.
3929 &$tools: array of extra links
3930 $title: Title object
3931 $redirect: whether the page is a redirect
3932 $skin: Skin object
3933 &$link: HTML link to title
3934
3935 'WebRequestPathInfoRouter': While building the PathRouter to parse the
3936 REQUEST_URI.
3937 $router: The PathRouter instance
3938
3939 'WebResponseSetCookie': when setting a cookie in WebResponse::setcookie().
3940 Return false to prevent setting of the cookie.
3941 &$name: Cookie name passed to WebResponse::setcookie()
3942 &$value: Cookie value passed to WebResponse::setcookie()
3943 &$expire: Cookie expiration, as for PHP's setcookie()
3944 &$options: Options passed to WebResponse::setcookie()
3945
3946 'wfShellWikiCmd': Called when generating a shell-escaped command line string to
3947 run a MediaWiki cli script.
3948 &$script: MediaWiki cli script path
3949 &$parameters: Array of arguments and options to the script
3950 &$options: Associative array of options, may contain the 'php' and 'wrapper'
3951 keys
3952
3953 'wgQueryPages': Called when initialising list of QueryPage subclasses, use this
3954 to add new query pages to be updated with maintenance/updateSpecialPages.php.
3955 &$qp: The list of QueryPages
3956
3957 'WhatLinksHereProps': Allows annotations to be added to WhatLinksHere
3958 $row: The DB row of the entry.
3959 $title: The Title of the page where the link comes FROM
3960 $target: The Title of the page where the link goes TO
3961 &$props: Array of HTML strings to display after the title.
3962
3963 'WikiExporter::dumpStableQuery': Get the SELECT query for "stable" revisions
3964 dumps. One, and only one hook should set this, and return false.
3965 &$tables: Database tables to use in the SELECT query
3966 &$opts: Options to use for the query
3967 &$join: Join conditions
3968
3969 'WikiPageDeletionUpdates': DEPRECATED! Use PageDeletionDataUpdates or
3970 override ContentHandler::getDeletionDataUpdates instead.
3971 Manipulates the list of DeferrableUpdates to be applied when a page is deleted.
3972 $page: the WikiPage
3973 $content: the Content to generate updates for, or null in case the page revision
3974 could not be loaded. The delete will succeed despite this.
3975 &$updates: the array of objects that implement DeferrableUpdate. Hook function
3976 may want to add to it.
3977
3978 'WikiPageFactory': Override WikiPage class used for a title
3979 $title: Title of the page
3980 &$page: Variable to set the created WikiPage to.
3981
3982 'XmlDumpWriterOpenPage': Called at the end of XmlDumpWriter::openPage, to allow
3983 extra metadata to be added.
3984 $obj: The XmlDumpWriter object.
3985 &$out: The output string.
3986 $row: The database row for the page.
3987 $title: The title of the page.
3988
3989 'XmlDumpWriterWriteRevision': Called at the end of a revision in an XML dump, to
3990 add extra metadata.
3991 &$obj: The XmlDumpWriter object.
3992 &$out: The text being output.
3993 $row: The database row for the revision being dumped. DEPRECATED, use $rev instead.
3994 $text: The revision text to be dumped. DEPRECATED, use $rev instead.
3995 $rev: The RevisionRecord that is being dumped to XML
3996
3997 More hooks might be available but undocumented, you can execute
3998 "php maintenance/findHooks.php" to find hidden ones.