User:SPage (WMF)/hooks.txt
Here's doc/hooks.txt dumped into a wiki page. See phab:T93043 for why this is interesting.
Although it's a .txt file, like RELEASE-NOTES it has some wiki formatting in it. To make it more usable I wrapped the huge #Events and parameters section with <poem>, but we could instead
- encourage more light formatting
- pre-process to turn
'<A-Z><A-Za-z>*'
into a subsection heading, $x into <code>, etc. - parse it with a format like markdown, or...
Please comment on the bug phab:T93043.
hooks.txt
This document describes how event hooks work in MediaWiki; how to add hooks for an event; and how to run hooks for an event.
Glossary
[edit]event
Something that happens with the wiki. For example: a user logs in. A wiki page is saved. A wiki page is deleted. Often there are two events associated with a single action: one before the code is run to make the event happen, and one after. Each event has a name, preferably in CamelCase. For example, 'UserLogin', 'ArticleSave', 'ArticleSaveComplete', 'ArticleDelete'.
hook
A clump of code and data that should be run when an event happens. This can be either a function and a chunk of data, or an object and a method.
hook function
The function part of a hook.
Rationale
[edit]Hooks allow us to decouple optionally-run code from code that is run for everyone. It allows MediaWiki hackers, third-party developers and local administrators to define code that will be run at certain points in the mainline code, and to modify the data run by that mainline code. Hooks can keep mainline code simple, and make it easier to write extensions. Hooks are a principled alternative to local patches.
Consider, for example, two options in MediaWiki. One reverses the order of a title before displaying the article; the other converts the title to all uppercase letters. Currently, in MediaWiki code, we would handle this as follows (note: not real code, here):
function showAnArticle( $article ) { global $wgReverseTitle, $wgCapitalizeTitle;
if ( $wgReverseTitle ) { wfReverseTitle( $article ); }
if ( $wgCapitalizeTitle ) { wfCapitalizeTitle( $article ); }
# code to actually show the article goes here }
An extension writer, or a local admin, will often add custom code to the function -- with or without a global variable. For example, someone wanting email notification when an article is shown may add:
function showAnArticle( $article ) { global $wgReverseTitle, $wgCapitalizeTitle, $wgNotifyArticle;
if ( $wgReverseTitle ) { wfReverseTitle( $article ); }
if ( $wgCapitalizeTitle ) { wfCapitalizeTitle( $article ); }
# code to actually show the article goes here
if ( $wgNotifyArticle ) { wfNotifyArticleShow( $article ); } }
Using a hook-running strategy, we can avoid having all this option-specific stuff in our mainline code. Using hooks, the function becomes:
function showAnArticle( $article ) {
if ( Hooks::run( 'ArticleShow', array( &$article ) ) ) {
# code to actually show the article goes here
Hooks::run( 'ArticleShowComplete', array( &$article ) ); } }
We've cleaned up the code here by removing clumps of weird, infrequently used code and moving them off somewhere else. It's much easier for someone working with this code to see what's _really_ going on, and make changes or fix bugs.
In addition, we can take all the code that deals with the little-used title-reversing options (say) and put it in one place. Instead of having little title-reversing if-blocks spread all over the codebase in showAnArticle, deleteAnArticle, exportArticle, etc., we can concentrate it all in an extension file:
function reverseArticleTitle( $article ) { # ... }
function reverseForExport( $article ) { # ... }
The setup function for the extension just has to add its hook functions to the appropriate events:
setupTitleReversingExtension() { global $wgHooks;
$wgHooks['ArticleShow'][] = 'reverseArticleTitle'; $wgHooks['ArticleDelete'][] = 'reverseArticleTitle'; $wgHooks['ArticleExport'][] = 'reverseForExport'; }
Having all this code related to the title-reversion option in one place means that it's easier to read and understand; you don't have to do a grep-find to see where the $wgReverseTitle variable is used, say.
If the code is well enough isolated, it can even be excluded when not used -- making for some slight savings in memory and load-up performance at runtime. Admins who want to have all the reversed titles can add:
require_once 'extensions/ReverseTitle.php';
...to their LocalSettings.php file; those of us who don't want or need it can just leave it out.
The extensions don't even have to be shipped with MediaWiki; they could be provided by a third-party developer or written by the admin him/herself.
Writing hooks
[edit]A hook is a chunk of code run at some particular event. It consists of:
* a function with some optional accompanying data, or * an object with a method and some optional accompanying data.
Hooks are registered by adding them to the global $wgHooks array for a given event. All the following are valid ways to define hooks:
$wgHooks['EventName'][] = 'someFunction'; # function, no data $wgHooks['EventName'][] = array( 'someFunction', $someData ); $wgHooks['EventName'][] = array( 'someFunction' ); # weird, but OK
$wgHooks['EventName'][] = $object; # object only $wgHooks['EventName'][] = array( $object, 'someMethod' ); $wgHooks['EventName'][] = array( $object, 'someMethod', $someData ); $wgHooks['EventName'][] = array( $object ); # weird but OK
When an event occurs, the function (or object method) will be called with the optional data provided as well as event-specific parameters. The above examples would result in the following code being executed when 'EventName' happened:
# function, no data someFunction( $param1, $param2 ) # function with data someFunction( $someData, $param1, $param2 )
# object only $object->onEventName( $param1, $param2 ) # object with method $object->someMethod( $param1, $param2 ) # object with method and data $object->someMethod( $someData, $param1, $param2 )
Note that when an object is the hook, and there's no specified method, the default method called is 'onEventName'. For different events this would be different: 'onArticleSave', 'onUserLogin', etc.
The extra data is useful if we want to use the same function or object for different purposes. For example:
$wgHooks['ArticleSaveComplete'][] = array( 'ircNotify', 'TimStarling' ); $wgHooks['ArticleSaveComplete'][] = array( 'ircNotify', 'brion' );
This code would result in ircNotify being run twice when an article is saved: once for 'TimStarling', and once for 'brion'.
Hooks can return three possible values:
* true: the hook has operated successfully * "some string": an error occurred; processing should stop and the error should be shown to the user * false: the hook has successfully done the work necessary and the calling function should skip
The last result would be for cases where the hook function replaces the main functionality. For example, if you wanted to authenticate users to a custom system (LDAP, another PHP program, whatever), you could do:
$wgHooks['UserLogin'][] = array( 'ldapLogin', $ldapServer );
function ldapLogin( $username, $password ) { # log user into LDAP return false; }
Returning false makes less sense for events where the action is complete, and will normally be ignored.
Note that none of the examples made use of create_function() as a way to attach a function to a hook. This is known to cause problems (notably with Special:Version), and should be avoided when at all possible.
Using hooks
[edit]A calling function or method uses the Hooks::run() function to run the hooks related to a particular event, like so:
class Article { # ... function protect() { global $wgUser; if ( Hooks::run( 'ArticleProtect', array( &$this, &$wgUser ) ) ) { # protect the article Hooks::run( 'ArticleProtectComplete', array( &$this, &$wgUser ) ); } } }
Hooks::run() returns true if the calling function should continue processing (the hooks ran OK, or there are no hooks to run), or false if it shouldn't (an error occurred, or one of the hooks handled the action already). Checking the return value matters more for "before" hooks than for "complete" hooks.
Hooks::run() was added in MediaWiki 1.18, before that the global function wfRunHooks must be used, which was deprecated in MediaWiki 1.25.
Note that hook parameters are passed in an array; this is a necessary inconvenience to make it possible to pass reference values (that can be changed) into the hook code. Also note that earlier versions of wfRunHooks took a variable number of arguments; the array() calling protocol came about after MediaWiki 1.4rc1.
Events and parameters
[edit]<poem> This is a list of known events and parameters; please add to it if you're going to add events to the MediaWiki code.
'AbortAutoAccount': Return false to cancel automated local account creation, where normally authentication against an external auth plugin would be creating a local account. $user: the User object about to be created (read-only, incomplete) &$abortMsg: out parameter: name of error message to be displayed to user
'AbortAutoblock': Return false to cancel an autoblock. $autoblockip: The IP going to be autoblocked. $block: The block from which the autoblock is coming.
'AbortDiffCache': Can be used to cancel the caching of a diff. &$diffEngine: DifferenceEngine object
'AbortEmailNotification': Can be used to cancel email notifications for an edit. $editor: The User who made the change. $title: The Title of the page that was edited. $rc: The current RecentChange object.
'AbortLogin': Return false to cancel account login. $user: the User object being authenticated against $password: the password being submitted, not yet checked for validity &$retval: a LoginForm class constant to return from authenticateUserData();
default is LoginForm::ABORTED. Note that the client may be using a machine API rather than the HTML user interface.
&$msg: the message identifier for abort reason (new in 1.18, not available before 1.18)
'AbortNewAccount': Return false to cancel explicit account creation. $user: the User object about to be created (read-only, incomplete) &$msg: out parameter: HTML to display on abort &$status: out parameter: Status object to return, replaces the older $msg param (added in 1.23)
Create the object with Status::newFatal() to ensure proper API error messages are returned when creating account through API clients.
'AbortTalkPageEmailNotification': Return false to cancel talk page email notification $targetUser: the user whom to send talk page email notification $title: the page title
'SendWatchlistEmailNotification': Return true to send watchlist email notification $targetUser: the user whom to send watchlist email notification $title: the page title $enotif: EmailNotification object
'AbortChangePassword': Return false to cancel password change. $user: the User object to which the password change is occuring $mOldpass: the old password provided by the user $newpass: the new password provided by the user &$abortMsg: the message identifier for abort reason
'ActionBeforeFormDisplay': Before executing the HTMLForm object. $name: name of the action &$form: HTMLForm object $article: Article object
'ActionModifyFormFields': Before creating an HTMLForm object for a page action; Allows to change the fields on the form that will be generated. $name: name of the action &$fields: HTMLForm descriptor array $article: Article object
'AddNewAccount': After a user account is created. $user: the User object that was created. (Parameter added in 1.7) $byEmail: true when account was created "by email" (added in 1.12)
'AddNewAccountApiForm': Allow modifying internal login form when creating an account via API. $apiModule: the ApiCreateAccount module calling $loginForm: the LoginForm used
'AddNewAccountApiResult': Modify API output when creating a new account via API. $apiModule: the ApiCreateAccount module calling $loginForm: the LoginForm used &$result: associative array for API result data
'AfterFinalPageOutput': Nearly at the end of OutputPage::output() but before OutputPage::sendCacheControl() and final ob_end_flush() which will send the buffered output to the client. This allows for last-minute modification of the output within the buffer by using ob_get_clean(). $output: The OutputPage object where output() was called
'AfterImportPage': When a page import is completed. $title: Title under which the revisions were imported $foreignTitle: ForeignTitle object based on data provided by the XML file $revCount: Number of revisions in the XML file $sRevCount: Number of successfully imported revisions $pageInfo: associative array of page information
'AfterParserFetchFileAndTitle': After an image gallery is formed by Parser, just before adding its HTML to parser output. $parser: Parser object that called the hook $ig: Gallery, an object of one of the gallery classes (inheriting from ImageGalleryBase) $html: HTML generated by the gallery
'AlternateEdit': Before checking if a user can edit a page and before showing the edit form ( EditPage::edit() ). This is triggered on &action=edit. $editPage: the EditPage object
'AlternateEditPreview': Before generating the preview of the page when editing ( EditPage::getPreviewText() ). $editPage: the EditPage object &$content: the Content object for the text field from the edit page &$previewHTML: Text to be placed into the page for the preview &$parserOutput: the ParserOutput object for the preview return false and set $previewHTML and $parserOutput to output custom page preview HTML.
'AlternateUserMailer': Called before mail is sent so that mail could be logged (or something else) instead of using PEAR or PHP's mail(). Return false to skip the regular method of sending mail. Return a string to return a php-mail-error message containing the error. Returning true will continue with sending email in the regular way. $headers: Associative array of headers for the email $to: MailAddress object or array $from: From address $subject: Subject of the email $body: Body of the message
'APIAfterExecute': After calling the execute() method of an API module. Use this to extend core API modules. &$module: Module object
'ApiBeforeMain': Before calling ApiMain's execute() method in api.php. &$main: ApiMain object
'ApiCheckCanExecute': Called during ApiMain::checkCanExecute. Use to further authenticate and authorize API clients before executing the module. Return false and set a message to cancel the request. $module: Module object $user: Current user &$message: API usage message to die with, as a message key or array as accepted by ApiBase::dieUsageMsg.
'APIEditBeforeSave': Before saving a page with api.php?action=edit, after processing request parameters. Return false to let the request fail, returning an error message or an <edit result="Failure"> tag if $resultArr was filled. $editPage : the EditPage object $text : the new text of the article (has yet to be saved) &$resultArr : data in this array will be added to the API result
'ApiFeedContributions::feedItem': Called to convert the result of ContribsPager into a FeedItem instance that ApiFeedContributions can consume. Implementors of this hook may cancel the hook to signal that the item is not viewable in the provided context. $row: A row of data from ContribsPager. The set of data returned by ContribsPager
can be adjusted by handling the ContribsPager::reallyDoQuery hook.
$context: An IContextSource implementation. &$feedItem: Set this to a FeedItem instance if the callback can handle the provided
row. This is provided to the hook as a null, if it is non null then another callback has already handled the hook.
'ApiFormatHighlight': Use to syntax-highlight API pretty-printed output. When highlighting, add output to $context->getOutput() and return false. $context: An IContextSource. $text: Text to be highlighted. $mime: MIME type of $text. $format: API format code for $text.
'APIGetAllowedParams': Use this hook to modify a module's parameters. &$module: ApiBase Module object &$params: Array of parameters $flags: int zero or OR-ed flags like ApiBase::GET_VALUES_FOR_HELP
'APIGetDescription': DEPRECATED! Use APIGetDescriptionMessages instead. Use this hook to modify a module's description. &$module: ApiBase Module object &$desc: String description, or array of description strings
'APIGetDescriptionMessages': Use this hook to modify a module's help message. $module: ApiBase Module object &$msg: Array of Message objects
'APIGetParamDescription': DEPRECATED! Use APIGetParamDescriptionMessages instead. Use this hook to modify a module's parameter descriptions. &$module: ApiBase Module object &$desc: Array of parameter descriptions
'APIGetParamDescriptionMessages': Use this hook to modify a module's parameter descriptions. $module: ApiBase Module object &$msg: Array of arrays of Message objects
'APIHelpModifyOutput': Use this hook to modify an API module's help output. $module: ApiBase Module object &$help: Array of HTML strings to be joined for the output. $options: Array Options passed to ApiHelp::getHelp
'ApiMain::moduleManager': Called when ApiMain has finished initializing its module manager. Can be used to conditionally register API modules. $moduleManager: ApiModuleManager Module manager instance
'ApiOpenSearchSuggest': Called when constructing the OpenSearch results. Hooks can alter or append to the array. &$results: array with integer keys to associative arrays. Keys in associative array:
- title: Title object. - redirect from: Title or null. - extract: Description for this result. - extract trimmed: If truthy, the extract will not be trimmed to $wgOpenSearchDescriptionLength. - image: Thumbnail for this result. Value is an array with subkeys 'source' (url), 'width', 'height', 'alt', 'align'. - url: Url for the given title.
'ApiQuery::moduleManager': Called when ApiQuery has finished initializing its module manager. Can be used to conditionally register API query modules. $moduleManager: ApiModuleManager Module manager instance
'APIQueryAfterExecute': After calling the execute() method of an action=query submodule. Use this to extend core API modules. &$module: Module object
'APIQueryGeneratorAfterExecute': After calling the executeGenerator() method of an action=query submodule. Use this to extend core API modules. &$module: Module object &$resultPageSet: ApiPageSet object
'APIQueryInfoTokens': DEPRECATED! Use ApiQueryTokensRegisterTypes instead. Use this hook to add custom tokens to prop=info. Every token has an action, which will be used in the intoken parameter and in the output (actiontoken="..."), and a callback function which should return the token, or false if the user isn't allowed to obtain it. The prototype of the callback function is func($pageid, $title), where $pageid is the page ID of the page the token is requested for and $title is the associated Title object. In the hook, just add your callback to the $tokenFunctions array and return true (returning false makes no sense). $tokenFunctions: array(action => callback)
'APIQueryRevisionsTokens': DEPRECATED! Use ApiQueryTokensRegisterTypes instead. Use this hook to add custom tokens to prop=revisions. Every token has an action, which will be used in the rvtoken parameter and in the output (actiontoken="..."), and a callback function which should return the token, or false if the user isn't allowed to obtain it. The prototype of the callback function is func($pageid, $title, $rev), where $pageid is the page ID of the page associated to the revision the token is requested for, $title the associated Title object and $rev the associated Revision object. In the hook, just add your callback to the $tokenFunctions array and return true (returning false makes no sense). $tokenFunctions: array(action => callback)
'APIQueryRecentChangesTokens': DEPRECATED! Use ApiQueryTokensRegisterTypes instead. Use this hook to add custom tokens to list=recentchanges. Every token has an action, which will be used in the rctoken parameter and in the output (actiontoken="..."), and a callback function which should return the token, or false if the user isn't allowed to obtain it. The prototype of the callback function is func($pageid, $title, $rc), where $pageid is the page ID of the page associated to the revision the token is requested for, $title the associated Title object and $rc the associated RecentChange object. In the hook, just add your callback to the $tokenFunctions array and return true (returning false makes no sense). $tokenFunctions: array(action => callback)
'APIQuerySiteInfoGeneralInfo': Use this hook to add extra information to the sites general information. $module: the current ApiQuerySiteInfo module &$results: array of results, add things here
'APIQuerySiteInfoStatisticsInfo': Use this hook to add extra information to the sites statistics information. &$results: array of results, add things here
'ApiQueryTokensRegisterTypes': Use this hook to add additional token types to action=query&meta=tokens. Note that most modules will probably be able to use the 'csrf' token instead of creating their own token types. &$salts: array( type => salt to pass to User::getEditToken() )
'APIQueryUsersTokens': DEPRECATED! Use ApiQueryTokensRegisterTypes instead. Use this hook to add custom token to list=users. Every token has an action, which will be used in the ustoken parameter and in the output (actiontoken="..."), and a callback function which should return the token, or false if the user isn't allowed to obtain it. The prototype of the callback function is func($user) where $user is the User object. In the hook, just add your callback to the $tokenFunctions array and return true (returning false makes no sense). $tokenFunctions: array(action => callback)
'ApiMain::onException': Called by ApiMain::executeActionWithErrorHandling() when an exception is thrown during API action execution. $apiMain: Calling ApiMain instance. $e: Exception object.
'ApiRsdServiceApis': Add or remove APIs from the RSD services list. Each service should have its own entry in the $apis array and have a unique name, passed as key for the array that represents the service data. In this data array, the key-value-pair identified by the apiLink key is required. &$apis: array of services
'ApiTokensGetTokenTypes': DEPRECATED! Use ApiQueryTokensRegisterTypes instead. Use this hook to extend action=tokens with new token types. &$tokenTypes: supported token types in format 'type' => callback function used to retrieve this type of tokens.
'Article::MissingArticleConditions': Before fetching deletion & move log entries to display a message of a non-existing page being deleted/moved, give extensions a chance to hide their (unrelated) log entries. &$conds: Array of query conditions (all of which have to be met; conditions will AND in the final query) $logTypes: Array of log types being queried
'ArticleAfterFetchContent': After fetching content of an article from the database. DEPRECATED, use ArticleAfterFetchContentObject instead. $article: the article (object) being loaded from the database &$content: the content (string) of the article
'ArticleAfterFetchContentObject': After fetching content of an article from the database. $article: the article (object) being loaded from the database &$content: the content of the article, as a Content object
'ArticleConfirmDelete': Before writing the confirmation form for article deletion. $article: the article (object) being deleted $output: the OutputPage object &$reason: the reason (string) the article is being deleted
'ArticleContentOnDiff': Before showing the article content below a diff. Use this to change the content in this area or how it is loaded. $diffEngine: the DifferenceEngine $output: the OutputPage object
'ArticleDelete': Before an article is deleted. $wikiPage: the WikiPage (object) being deleted $user: the user (object) deleting the article $reason: the reason (string) the article is being deleted $error: if the deletion was prohibited, the (raw HTML) error message to display
(added in 1.13)
$status: Status object, modify this to throw an error. Overridden by $error
(added in 1.20)
'ArticleDeleteAfterSuccess': Output after an article has been deleted. $title: Title of the article that has been deleted. $outputPage: OutputPage that can be used to append the output.
'ArticleDeleteComplete': After an article is deleted. $wikiPage: the WikiPage that was deleted $user: the user that deleted the article $reason: the reason the article was deleted $id: id of the article that was deleted $content: the Content of the deleted page $logEntry: the ManualLogEntry used to record the deletion
'ArticleEditUpdateNewTalk': Before updating user_newtalk when a user talk page was changed. &$wikiPage: WikiPage (object) of the user talk page $recipient: User (object) who's talk page was edited
'ArticleEditUpdates': When edit updates (mainly link tracking) are made when an article has been changed. $wikiPage: the WikiPage (object) $editInfo: data holder that includes the parser output ($editInfo->output) for that page after the change $changed: bool for if the page was changed
'ArticleEditUpdatesDeleteFromRecentchanges': Before deleting old entries from recentchanges table, return false to not delete old entries. $wikiPage: WikiPage (object) being modified
'ArticleFromTitle': when creating an article object from a title object using Wiki::articleFromTitle(). $title: Title (object) used to create the article object $article: Article (object) that will be returned $context: IContextSource (object)
'ArticleInsertComplete': After a new article is created. DEPRECATED, use PageContentInsertComplete. $wikiPage: WikiPage created $user: User creating the article $text: New content $summary: Edit summary/comment $isMinor: Whether or not the edit was marked as minor $isWatch: (No longer used) $section: (No longer used) $flags: Flags passed to WikiPage::doEditContent() $revision: New Revision of the article
'ArticleMergeComplete': After merging to article using Special:Mergehistory. $targetTitle: target title (object) $destTitle: destination title (object)
'ArticlePageDataAfter': After loading data of an article from the database. $wikiPage: WikiPage (object) whose data were loaded $row: row (object) returned from the database server
'ArticlePageDataBefore': Before loading data of an article from the database. $wikiPage: WikiPage (object) that data will be loaded $fields: fields (array) to load from the database
'ArticlePrepareTextForEdit': Called when preparing text to be saved. $wikiPage: the WikiPage being saved $popts: parser options to be used for pre-save transformation
'ArticleProtect': Before an article is protected. $wikiPage: the WikiPage being protected $user: the user doing the protection $protect: boolean whether this is a protect or an unprotect $reason: Reason for protect $moveonly: boolean whether this is for move only or not
'ArticleProtectComplete': After an article is protected. $wikiPage: the WikiPage that was protected $user: the user who did the protection $protect: boolean whether it was a protect or an unprotect $reason: Reason for protect $moveonly: boolean whether it was for move only or not
'ArticlePurge': Before executing "&action=purge". $wikiPage: WikiPage (object) to purge
'ArticleRevisionVisibilitySet': Called when changing visibility of one or more revisions of an article. &$title: Title object of the article
'ArticleRevisionUndeleted': After an article revision is restored. $title: the article title $revision: the revision $oldPageID: the page ID of the revision when archived (may be null)
'ArticleRollbackComplete': After an article rollback is completed. $wikiPage: the WikiPage that was edited $user: the user who did the rollback $revision: the revision the page was reverted back to $current: the reverted revision
'ArticleSave': Before an article is saved. DEPRECATED, use PageContentSave instead. $wikiPage: the WikiPage (object) being saved $user: the user (object) saving the article $text: the new article text $summary: the article summary (comment) $isminor: minor flag $iswatch: watch flag $section: section #
'ArticleSaveComplete': After an article has been updated. DEPRECATED, use PageContentSaveComplete instead. $wikiPage: WikiPage modified $user: User performing the modification $text: New content $summary: Edit summary/comment $isMinor: Whether or not the edit was marked as minor $isWatch: (No longer used) $section: (No longer used) $flags: Flags passed to WikiPage::doEditContent() $revision: New Revision of the article $status: Status object about to be returned by doEditContent() $baseRevId: the rev ID (or false) this edit was based on
'ArticleUndelete': When one or more revisions of an article are restored. $title: Title corresponding to the article restored $create: Whether or not the restoration caused the page to be created (i.e. it
didn't exist before).
$comment: The comment associated with the undeletion. $oldPageId: ID of page previously deleted (from archive table)
'ArticleUndeleteLogEntry': When a log entry is generated but not yet saved. $pageArchive: the PageArchive object &$logEntry: ManualLogEntry object $user: User who is performing the log action
'ArticleUpdateBeforeRedirect': After a page is updated (usually on save), before the user is redirected back to the page. &$article: the article &$sectionanchor: The section anchor link (e.g. "#overview" ) &$extraq: Extra query parameters which can be added via hooked functions
'ArticleViewFooter': After showing the footer section of an ordinary page view $article: Article object $patrolFooterShown: boolean whether patrol footer is shown
'ArticleViewHeader': Before the parser cache is about to be tried for article viewing. &$article: the article &$pcache: whether to try the parser cache or not &$outputDone: whether the output for this page finished or not. Set to a ParserOutput object to both indicate that the output is done and what parser output was used.
'ArticleViewRedirect': Before setting "Redirected from ..." subtitle when a redirect was followed. $article: target article (object)
'ArticleViewCustom': Allows to output the text of the article in a different format than wikitext. DEPRECATED, use ArticleContentViewCustom instead. Note that it is preferable to implement proper handing for a custom data type using the ContentHandler facility. $text: text of the page $title: title of the page $output: reference to $wgOut
'ArticleContentViewCustom': Allows to output the text of the article in a different format than wikitext. Note that it is preferable to implement proper handing for a custom data type using the ContentHandler facility. $content: content of the page, as a Content object $title: title of the page $output: reference to $wgOut
'AuthPluginAutoCreate': Called when creating a local account for an user logged in from an external authentication method. $user: User object created locally
'AuthPluginSetup': Update or replace authentication plugin object ($wgAuth). Gives a chance for an extension to set it programmatically to a variable class. &$auth: the $wgAuth object, probably a stub
'AutopromoteCondition': Check autopromote condition for user. $type: condition type $args: arguments $user: user $result: result of checking autopromote condition
'BacklinkCacheGetPrefix': Allows to set prefix for a specific link table. $table: table name &$prefix: prefix
'BacklinkCacheGetConditions': Allows to set conditions for query when links to certain title are fetched. $table: table name $title: title of the page to which backlinks are sought &$conds: query conditions
'BadImage': When checking against the bad image list. Change $bad and return false to override. If an image is "bad", it is not rendered inline in wiki pages or galleries in category pages. $name: Image name being checked &$bad: Whether or not the image is "bad"
'BaseTemplateAfterPortlet': After output of portlets, allow injecting custom HTML after the section. Any uses of the hook need to handle escaping. $template BaseTemplate $portlet: string portlet name &$html: string
'BeforeDisplayNoArticleText': Before displaying message key "noarticletext" or "noarticletext-nopermission" at Article::showMissingArticle(). $article: article object
'BeforeInitialize': Before anything is initialized in MediaWiki::performRequest(). &$title: Title being used for request $unused: null &$output: OutputPage object &$user: User $request: WebRequest object $mediaWiki: Mediawiki object
'BeforePageDisplay': Prior to outputting a page. &$out: OutputPage object &$skin: Skin object
'BeforeHttpsRedirect': Prior to forcing HTTP->HTTPS redirect. Gives a chance to override how the redirect is output by modifying, or by returning false, and letting standard HTTP rendering take place. ATTENTION: This hook is likely to be removed soon due to overall design of the system. $context: IContextSource object &$redirect: string URL, modifiable
'BeforePageRedirect': Prior to sending an HTTP redirect. Gives a chance to override how the redirect is output by modifying, or by returning false and taking over the output. $out: OutputPage object &$redirect: URL, modifiable &$code: HTTP code (eg '301' or '302'), modifiable
'BeforeParserFetchFileAndTitle': Before an image is rendered by Parser. $parser: Parser object $nt: the image title &$options: array of options to RepoGroup::findFile. If it contains 'broken'
as a key then the file will appear as a broken thumbnail.
&$descQuery: query string to add to thumbnail URL
'BeforeParserFetchTemplateAndtitle': Before a template is fetched by Parser. $parser: Parser object $title: title of the template &$skip: skip this template and link it? &$id: the id of the revision being parsed
'BeforeParserrenderImageGallery': Before an image gallery is rendered by Parser. &$parser: Parser object &$ig: ImageGallery object
'BeforeWelcomeCreation': Before the welcomecreation message is displayed to a newly created user. &$welcome_creation_msg: MediaWiki message name to display on the welcome screen
to a newly created user account.
&$injected_html: Any HTML to inject after the "logged in" message of a newly
created user account
'BitmapHandlerTransform': before a file is transformed, gives extension the possibility to transform it themselves $handler: BitmapHandler $image: File &$scalerParams: Array with scaler parameters &$mto: null, set to a MediaTransformOutput
'BitmapHandlerCheckImageArea': By BitmapHandler::normaliseParams, after all normalizations have been performed, except for the $wgMaxImageArea check. $image: File &$params: Array of parameters &$checkImageAreaHookResult: null, set to true or false to override the
$wgMaxImageArea check result.
'PerformRetroactiveAutoblock': Called before a retroactive autoblock is applied to a user. $block: Block object (which is set to be autoblocking) &$blockIds: Array of block IDs of the autoblock
'BlockIp': Before an IP address or user is blocked. $block: the Block object about to be saved $user: the user _doing_ the block (not the one being blocked) &$reason: if the hook is aborted, the error message to be returned in an array
'BlockIpComplete': After an IP address or user is blocked. $block: the Block object that was saved $user: the user who did the block (not the one being blocked)
'BookInformation': Before information output on Special:Booksources. $isbn: ISBN to show information for $output: OutputPage object in use
'CanIPUseHTTPS': Determine whether the client at a given source IP is likely to be able to access the wiki via HTTPS. $ip: The IP address in human-readable form &$canDo: This reference should be set to false if the client may not be able to use HTTPS
'CanonicalNamespaces': For extensions adding their own namespaces or altering the defaults. Note that if you need to specify namespace protection or content model for a namespace that is added in a CanonicalNamespaces hook handler, you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler, in top-level scope. The point at which the CanonicalNamespaces hook fires is too late for altering these variables. This applies even if the namespace addition is conditional; it is permissible to declare a content model and protection for a namespace and then decline to actually register it. &$namespaces: Array of namespace numbers with corresponding canonical names
'CategoryAfterPageAdded': After a page is added to a category. $category: Category that page was added to $wikiPage: WikiPage that was added
'CategoryAfterPageRemoved': After a page is removed from a category. $category: Category that page was removed from $wikiPage: WikiPage that was removed
'CategoryPageView': Before viewing a categorypage in CategoryPage::view. $catpage: CategoryPage instance
'CategoryViewer::doCategoryQuery': After querying for pages to be displayed in a Category page. Gives extensions the opportunity to batch load any related data about the pages. $type: The category type. Either 'page', 'file' or 'subcat' $res: Query result from DatabaseBase::select()
'CategoryViewer::generateLink': Before generating an output link allow extensions opportunity to generate a more specific or relevant link. $type: The category type. Either 'page', 'img' or 'subcat' $title: Title object for the categorized page $html: Requested html content of anchor &$link: Returned value. When set to a non-null value by a hook subscriber this value will be used as the anchor instead of Linker::link
'ChangePasswordForm': For extensions that need to add a field to the ChangePassword form via the Preferences form. &$extraFields: An array of arrays that hold fields like would be passed to the
pretty function.
'ChangesListInsertArticleLink': Override or augment link to article in RC list. &$changesList: ChangesList instance. &$articlelink: HTML of link to article (already filled-in). &$s: HTML of row that is being constructed. &$rc: RecentChange instance. $unpatrolled: Whether or not we are showing unpatrolled changes. $watched: Whether or not the change is watched by the user.
'ChangesListInitRows': Batch process change list rows prior to rendering. $changesList: ChangesList instance $rows: The data that will be rendered. May be a ResultWrapper instance or
an array.
'ChangesListSpecialPageFilters': Called after building form options on pages inheriting from ChangesListSpecialPage (in core: RecentChanges, RecentChangesLinked and Watchlist). $special: ChangesListSpecialPage instance &$filters: associative array of filter definitions. The keys are the HTML
name/URL parameters. Each key maps to an associative array with a 'msg' (message key) and a 'default' value.
'ChangesListSpecialPageQuery': Called when building SQL query on pages inheriting from ChangesListSpecialPage (in core: RecentChanges, RecentChangesLinked and Watchlist). $name: name of the special page, e.g. 'Watchlist' &$tables: array of tables to be queried &$fields: array of columns to select &$conds: array of WHERE conditionals for query &$query_options: array of options for the database request &$join_conds: join conditions for the tables $opts: FormOptions for this request
'ChangeTagAfterDelete': Called after a change tag has been deleted (that is, removed from all revisions and log entries to which it was applied). This gives extensions a chance to take it off their books. $tag: name of the tag &$status: Status object. Add warnings to this as required. There is no point
setting errors, as the deletion has already been partly carried out by this point.
'ChangeTagCanCreate': Tell whether a change tag should be able to be created from the UI (Special:Tags) or via the API. You could use this hook if you want to reserve a specific "namespace" of tags, or something similar. $tag: name of the tag $user: user initiating the action &$status: Status object. Add your errors using `$status->fatal()` or warnings
using `$status->warning()`. Errors and warnings will be relayed to the user. If you set an error, the user will be unable to create the tag.
'ChangeTagCanDelete': Tell whether a change tag should be able to be deleted from the UI (Special:Tags) or via the API. The default is that tags defined using the ListDefinedTags hook are not allowed to be deleted unless specifically allowed. If you wish to allow deletion of the tag, set `$status = Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag: name of the tag $user: user initiating the action &$status: Status object. See above.
'ChangeTagsListActive': Allows you to nominate which of the tags your extension uses are in active use. &$tags: list of all active tags. Append to this array.
'LoginUserMigrated': Called during login to allow extensions the opportunity to inform a user that their username doesn't exist for a specific reason, instead of letting the login form give the generic error message that the account does not exist. For example, when the account has been renamed or deleted. $user: the User object being authenticated against. &$msg: the message identifier for abort reason, or an array to pass a message
key and parameters.
'Collation::factory': Called if $wgCategoryCollation is an unknown collation. $collationName: Name of the collation in question &$collationObject: Null. Replace with a subclass of the Collation class that
implements the collation given in $collationName.
'ConfirmEmailComplete': Called after a user's email has been confirmed successfully. $user: user (object) whose email is being confirmed
'ContentHandlerDefaultModelFor': Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title: the Title in question &$model: the model name. Use with CONTENT_MODEL_XXX constants.
'ContentHandlerForModelID': Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. $modeName: the requested content model name &$handler: set this to a ContentHandler object, if desired.
'ContentModelCanBeUsedOn': Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel: ID of the content model in question $title: the Title in question. &$ok: Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok.
'ContentGetParserOutput': Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content: The Content to render $title: Title of the page, as context $revId: The revision ID, as context $options: ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml: boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. &$output: ParserOutput, to manipulate or replace
'ContentAlterParserOutput': Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called (such as adding tracking categories based on the rendered HTML). $content: The Content to render $title: Title of the page, as context $parserOutput: ParserOutput to manipulate
'ConvertContent': Called by AbstractContent::convert when a conversion to another content model is requested. $content: The Content object to be converted. $toModel: The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. &$result: Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. Handler functions that modify $result should generally return false to further attempts at conversion.
'ContribsPager::getQueryInfo': Before the contributions query is about to run &$pager: Pager object for contributions &$queryInfo: The query for the contribs Pager
'ContribsPager::reallyDoQuery': Called before really executing the query for My Contributions &$data: an array of results of all contribs queries $pager: The ContribsPager object hooked into $offset: Index offset, inclusive $limit: Exact query limit $descending: Query direction, false for ascending, true for descending
'ContributionsLineEnding': Called before a contributions HTML line is finished $page: SpecialPage object for contributions &$ret: the HTML line $row: the DB row for this line
&$classes: the classes to add to the surrounding
- Deprecated in favour of SkinEditSectionLinks hook *
" containing one RC entry. &$rc: The RecentChange object. &$classes: array of css classes for the
tags. Will only be used if the hook function returned false. 'SiteNoticeBefore': Before the sitenotice/anonnotice is composed. Return true to allow the normal method of notice selection/rendering to work, or change the value of $siteNotice and return false to alter it. &$siteNotice: HTML returned as the sitenotice $skin: Skin object 'SiteNoticeAfter': After the sitenotice/anonnotice is composed. &$siteNotice: HTML sitenotice. Alter the contents of $siteNotice to add to/alter the sitenotice/anonnotice. $skin: Skin object 'SkinAfterBottomScripts': At the end of Skin::bottomScripts(). $skin: Skin object &$text: bottomScripts Text. Append to $text to add additional text/scripts after the stock bottom scripts. 'SkinAfterContent': Allows extensions to add text after the page content and article metadata. This hook should work in all skins. Set the &$data variable to the text you're going to add. &$data: (string) Text to be printed out directly (without parsing) $skin: Skin object 'SkinBuildSidebar': At the end of Skin::buildSidebar(). $skin: Skin object &$bar: Sidebar contents Modify $bar to add or modify sidebar portlets. 'SidebarBeforeOutput': Allows to edit sidebar just before its output by skins. $skin Skin object &$bar: Sidebar content Modify $bar to add or modify sidebar portlets. Warning: This hook is run on each display. You should consider to use 'SkinBuildSidebar' that is aggressively cached. 'SkinCopyrightFooter': Allow for site and per-namespace customization of copyright notice. $title: displayed page title $type: 'normal' or 'history' for old/diff views &$msg: overridable message; usually 'copyright' or 'history_copyright'. This message must be in HTML format, not wikitext! &$link: overridable HTML link to be passed into the message as $1 &$forContent: overridable flag if copyright footer is shown in content language. This parameter is deprecated. 'SkinEditSectionLinks': Modify the section edit links $skin: Skin object rendering the UI $title: Title object for the title being linked to (may not be the same as the page title, if the section is included from a template) $section: The designation of the section being pointed to, to be included in the link, like "§ion=$section" $tooltip: The default tooltip. Escape before using. By default, this is wrapped in the 'editsectionhint' message. &$result: Array containing all link detail arrays. Each link detail array should contain the following keys: * targetTitle - Target Title object * text - String for the text * attribs - Array of attributes * query - Array of query parameters to add to the URL * options - Array of options for Linker::link $lang: The language code to use for the link in the wfMessage function 'SkinGetPoweredBy': TODO &$text: additional 'powered by' icons in HTML. Note: Modern skin does not use the MediaWiki icon but plain text instead. $skin: Skin object 'SkinPreloadExistence': Supply titles that should be added to link existence cache before the page is rendered. &$titles: Array of Title objects $skin: Skin object 'SkinSubPageSubtitle': At the beginning of Skin::subPageSubtitle(). &$subpages: Subpage links HTML $skin: Skin object $out: OutputPage object If false is returned $subpages will be used instead of the HTML subPageSubtitle() generates. If true is returned, $subpages will be ignored and the rest of subPageSubtitle() will run. 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink': After creating the "permanent link" tab. $sktemplate: SkinTemplate object $nav_urls: array of tabs 'SkinTemplateGetLanguageLink': After building the data for a language link from which the actual html is constructed. &$languageLink: array containing data about the link. The following keys can be modified: href, text, title, class, lang, hreflang. Each of them is a string. $languageLinkTitle: Title object belonging to the external language link. $title: Title object of the page the link belongs to. $outputPage: The OutputPage object the links are built from. To alter the structured navigation links in SkinTemplates, there are three hooks called in different spots: 'SkinTemplateNavigation': Called on content pages after the tabs have been added, but before variants have been added. 'SkinTemplateNavigation::SpecialPage': Called on special pages after the special tab is added but before variants have been added. 'SkinTemplateNavigation::Universal': Called on both content and special pages after variants have been added. &$sktemplate: SkinTemplate object &$links: Structured navigation links. This is used to alter the navigation for skins which use buildNavigationUrls such as Vector. 'SkinTemplateOutputPageBeforeExec': Before SkinTemplate::outputPage() starts page output. &$sktemplate: SkinTemplate object &$tpl: QuickTemplate engine object 'SkinTemplatePreventOtherActiveTabs': Use this to prevent showing active tabs. $sktemplate: SkinTemplate object $res: set to true to prevent active tabs 'SkinTemplateTabAction': Override SkinTemplate::tabAction(). You can either create your own array, or alter the parameters for the normal one. &$sktemplate: The SkinTemplate instance. $title: Title instance for the page. $message: Visible label of tab. $selected: Whether this is a selected tab. $checkEdit: Whether or not the action=edit query should be added if appropriate. &$classes: Array of CSS classes to apply. &$query: Query string to add to link. &$text: Link text. &$result: Complete assoc. array if you want to return true. 'SkinTemplateToolboxEnd': Called by SkinTemplate skins after toolbox links have been rendered (useful for adding more). $sk: The QuickTemplate based skin template running the hook. $dummy: Called when SkinTemplateToolboxEnd is used from a BaseTemplate skin, extensions that add support for BaseTemplateToolbox should watch for this dummy parameter with "$dummy=false" in their code and return without echoing any HTML to avoid creating duplicate toolbox items. 'SoftwareInfo': Called by Special:Version for returning information about the software. $software: The array of software in format 'name' => 'version'. See SpecialVersion::softwareInformation(). 'SpecialPageBeforeFormDisplay': Before executing the HTMLForm object. $name: name of the special page &$form: HTMLForm object 'SpecialBlockModifyFormFields': Add more fields to Special:Block $sp: SpecialPage object, for context &$fields: Current HTMLForm fields 'SpecialContributionsBeforeMainOutput': Before the form on Special:Contributions $id: User id number, only provided for backwards-compatibility $user: User object representing user contributions are being fetched for $sp: SpecialPage instance, providing context 'SpecialListusersDefaultQuery': Called right before the end of UsersPager::getDefaultQuery(). $pager: The UsersPager instance $query: The query array to be returned 'SpecialListusersFormatRow': Called right before the end of UsersPager::formatRow(). $item: HTML to be returned. Will be wrapped in
after the hook finishes $row: Database row object 'SpecialListusersHeader': Called before closing the <fieldset> in UsersPager::getPageHeader(). $pager: The UsersPager instance $out: The header HTML 'SpecialListusersHeaderForm': Called before adding the submit button in UsersPager::getPageHeader(). $pager: The UsersPager instance $out: The header HTML 'SpecialListusersQueryInfo': Called right before the end of. UsersPager::getQueryInfo() $pager: The UsersPager instance $query: The query array to be returned 'SpecialLogAddLogSearchRelations': Add log relations to the current log $type: String of the log type $request: WebRequest object for getting the value provided by the current user &$qc: Array for query conditions to add 'SpecialMovepageAfterMove': Called after moving a page. $movePage: MovePageForm object $oldTitle: old title (object) $newTitle: new title (object) 'SpecialNewpagesConditions': Called when building sql query for Special:NewPages. &$special: NewPagesPager object (subclass of ReverseChronologicalPager) $opts: FormOptions object containing special page options &$conds: array of WHERE conditionals for query &tables: array of tables to be queried &$fields: array of columns to select &$join_conds: join conditions for the tables 'SpecialNewPagesFilters': Called after building form options at NewPages. $special: the special page object &$filters: associative array of filter definitions. The keys are the HTML name/URL parameters. Each key maps to an associative array with a 'msg' (message key) and a 'default' value. 'SpecialPage_initList': Called when setting up SpecialPageFactory::$list, use this hook to remove a core special page or conditionally register special pages. $list: list (array) of core special pages 'SpecialPageAfterExecute': Called after SpecialPage::execute. $special: the SpecialPage object $subPage: the subpage string or null if no subpage was specified 'SpecialPageBeforeExecute': Called before SpecialPage::execute. $special: the SpecialPage object $subPage: the subpage string or null if no subpage was specified 'SpecialPasswordResetOnSubmit': When executing a form submission on Special:PasswordReset. $users: array of User objects. $data: array of data submitted by the user &$error: string, error code (message key) used to describe to error (out parameter). The hook needs to return false when setting this, otherwise it will have no effect. 'SpecialRandomGetRandomTitle': Called during the execution of Special:Random, use this to change some selection criteria or substitute a different title. &$randstr: The random number from wfRandom() &$isRedir: Boolean, whether to select a redirect or non-redirect &$namespaces: An array of namespace indexes to get the title from &$extra: An array of extra SQL statements &$title: If the hook returns false, a Title object to use instead of the result from the normal query 'SpecialRecentChangesFilters': Called after building form options at RecentChanges. Deprecated, use ChangesListSpecialPageFilters instead. $special: the special page object &$filters: associative array of filter definitions. The keys are the HTML name/URL parameters. Each key maps to an associative array with a 'msg' (message key) and a 'default' value. 'SpecialRecentChangesPanel': Called when building form options in SpecialRecentChanges. &$extraOpts: array of added items, to which can be added $opts: FormOptions for this request 'SpecialRecentChangesQuery': Called when building SQL query for SpecialRecentChanges and SpecialRecentChangesLinked. Deprecated, use ChangesListSpecialPageQuery instead. &$conds: array of WHERE conditionals for query &$tables: array of tables to be queried &$join_conds: join conditions for the tables $opts: FormOptions for this request &$query_options: array of options for the database request &$select: Array of columns to select 'SpecialResetTokensTokens': Called when building token list for SpecialResetTokens. &$tokens: array of token information arrays in the format of array( 'preference' => '<preference-name>', 'label-message' => '<message-key>' ) 'SpecialSearchCreateLink': Called when making the message to create a page or go to the existing page. $t: title object searched for &$params: an array of the default message name and page title (as parameter) 'SpecialSearchNogomatch': Called when user clicked the "Go" button but the target doesn't exist. &$title: title object generated from the text entered by the user 'SpecialSearchPowerBox': The equivalent of SpecialSearchProfileForm for the advanced form, a.k.a. power search box. &$showSections: an array to add values with more options to $term: the search term (not a title object) $opts: an array of hidden options (containing 'redirs' and 'profile') 'SpecialSearchProfiles': Allows modification of search profiles. &$profiles: profiles, which can be modified. 'SpecialSearchProfileForm': Allows modification of search profile forms. $search: special page object &$form: String: form html $profile: String: current search profile $term: String: search term $opts: Array: key => value of hidden options for inclusion in custom forms 'SpecialSearchSetupEngine': Allows passing custom data to search engine. $search: SpecialSearch special page object $profile: String: current search profile $engine: the search engine 'SpecialSearchResultsPrepend': Called immediately before returning HTML on the search results page. Useful for including an external search provider. To disable the output of MediaWiki search output, return false. $specialSearch: SpecialSearch object ($this) $output: $wgOut $term: Search term specified by the user 'SpecialSearchResults': Called before search result display $term: string of search term &$titleMatches: empty or SearchResultSet object &$textMatches: empty or SearchResultSet object 'SpecialStatsAddExtra': Add extra statistic at the end of Special:Statistics. &$extraStats: Array to save the new stats ( $extraStats['<name of statistic>'] => <value>; ) 'SpecialUploadComplete': Called after successfully uploading a file from Special:Upload. $form: The SpecialUpload object 'SpecialVersionVersionUrl': Called when building the URL for Special:Version. $wgVersion: Current $wgVersion for you to use &$versionUrl: Raw url to link to (eg: release notes) 'SpecialWatchlistFilters': Called after building form options at Watchlist. Deprecated, use ChangesListSpecialPageFilters instead. $special: the special page object &$filters: associative array of filter definitions. The keys are the HTML name/URL parameters. Each key maps to an associative array with a 'msg' (message key) and a 'default' value. 'SpecialWatchlistQuery': Called when building sql query for SpecialWatchlist. Deprecated, use ChangesListSpecialPageQuery instead. &$conds: array of WHERE conditionals for query &$tables: array of tables to be queried &$join_conds: join conditions for the tables &$fields: array of query fields $opts: A FormOptions object with watchlist options for the current request 'SpecialWatchlistGetNonRevisionTypes': Called when building sql query for SpecialWatchlist. Allows extensions to register custom values they have inserted to rc_type so they can be returned as part of the watchlist. &$nonRevisionTypes: array of values in the rc_type field of recentchanges table 'TestCanonicalRedirect': Called when about to force a redirect to a canonical URL for a title when we have no other parameters on the URL. Gives a chance for extensions that alter page view behavior radically to abort that redirect or handle it manually. $request: WebRequest $title: Title of the currently found title obj $output: OutputPage object 'ThumbnailBeforeProduceHTML': Called before an image HTML is about to be rendered (by ThumbnailImage:toHtml method). $thumbnail: the ThumbnailImage object &$attribs: image attribute array &$linkAttribs: image link attribute array 'TitleArrayFromResult': Called when creating an TitleArray object from a database result. &$titleArray: set this to an object to override the default object returned $res: database result used to create the object 'TitleExists': Called when determining whether a page exists at a given title. $title: The title being tested. &$exists: Whether the title exists. 'TitleQuickPermissions': Called from Title::checkQuickPermissions to add to or override the quick permissions check. $title: The Title object being accessed $user: The User performing the action $action: Action being performed &$errors: Array of errors $doExpensiveQueries: Whether to do expensive DB queries $short: Whether to return immediately on first error 'TitleGetEditNotices': Allows extensions to add edit notices $title: The Title object for the page the edit notices are for $oldid: Revision ID that the edit notices are for (or 0 for latest) &$notices: Array of notices. Keys are i18n message keys, values are parseAsBlock()ed messages. 'TitleGetRestrictionTypes': Allows extensions to modify the types of protection that can be applied. $title: The title in question. &$types: The types of protection available. 'TitleIsCssOrJsPage': DEPRECATED! Use ContentHandlerDefaultModelFor instead. Called when determining if a page is a CSS or JS page. $title: Title object that is being checked $result: Boolean; whether MediaWiki currently thinks this is a CSS/JS page. Hooks may change this value to override the return value of Title::isCssOrJsPage(). 'TitleIsAlwaysKnown': Called when determining if a page exists. Allows overriding default behavior for determining if a page exists. If $isKnown is kept as null, regular checks happen. If it's a boolean, this value is returned by the isKnown method. $title: Title object that is being checked &$isKnown: Boolean|null; whether MediaWiki currently thinks this page is known 'TitleIsMovable': Called when determining if it is possible to move a page. Note that this hook is not called for interwiki pages or pages in immovable namespaces: for these, isMovable() always returns false. $title: Title object that is being checked $result: Boolean; whether MediaWiki currently thinks this page is movable. Hooks may change this value to override the return value of Title::isMovable(). 'TitleIsWikitextPage': DEPRECATED! Use ContentHandlerDefaultModelFor instead. Called when determining if a page is a wikitext or should be handled by separate handler (via ArticleViewCustom). $title: Title object that is being checked $result: Boolean; whether MediaWiki currently thinks this is a wikitext page. Hooks may change this value to override the return value of Title::isWikitextPage() 'TitleMove': Before moving an article (title). $old: old title $nt: new title $user: user who does the move 'TitleMoveComplete': After moving an article (title). $old: old title $nt: new title $user: user who did the move $pageid: database ID of the page that's been moved $redirid: database ID of the created redirect $reason: reason for the move 'TitleReadWhitelist': Called at the end of read permissions checks, just before adding the default error message if nothing allows the user to read the page. If a handler wants a title to *not* be whitelisted, it should also return false. $title: Title object being checked against $user: Current user object &$whitelisted: Boolean value of whether this title is whitelisted 'TitleSquidURLs': Called to determine which URLs to purge from HTTP caches. $title: Title object to purge &$urls: An array of URLs to purge from the caches, to be manipulated. 'UndeleteForm::showHistory': Called in UndeleteForm::showHistory, after a PageArchive object has been created but before any further processing is done. &$archive: PageArchive object $title: Title object of the page that we're viewing 'UndeleteForm::showRevision': Called in UndeleteForm::showRevision, after a PageArchive object has been created but before any further processing is done. &$archive: PageArchive object $title: Title object of the page that we're viewing 'UndeleteForm::undelete': Called un UndeleteForm::undelete, after checking that the site is not in read-only mode, that the Title object is not null and after a PageArchive object has been constructed but before performing any further processing. &$archive: PageArchive object $title: Title object of the page that we're about to undelete 'UndeleteShowRevision': Called when showing a revision in Special:Undelete. $title: title object related to the revision $rev: revision (object) that will be viewed 'UnknownAction': An unknown "action" has occurred (useful for defining your own actions). $action: action name $article: article "acted on" 'UnitTestsList': Called when building a list of paths containing PHPUnit tests. Since 1.24: Paths pointing to a directory will be recursively scanned for test case files matching the suffix "Test.php". &$paths: list of test cases and directories to search. 'UnwatchArticle': Before a watch is removed from an article. $user: user watching $page: WikiPage object to be removed &$status: Status object to be returned if the hook returns false 'UnwatchArticleComplete': After a watch is removed from an article. $user: user that watched $page: WikiPage object that was watched 'UpdateUserMailerFormattedPageStatus': Before notification email gets sent. $formattedPageStatus: list of valid page states 'UploadForm:initial': Before the upload form is generated. You might set the member-variables $uploadFormTextTop and $uploadFormTextAfterSummary to inject text (HTML) either before or after the editform. $form: UploadForm object 'UploadForm:BeforeProcessing': At the beginning of processUpload(). Lets you poke at member variables like $mUploadDescription before the file is saved. Do not use this hook to break upload processing. This will return the user to a blank form with no error message; use UploadVerification and UploadVerifyFile instead. $form: UploadForm object 'UploadCreateFromRequest': When UploadBase::createFromRequest has been called. $type: (string) the requested upload type &$className: the class name of the Upload instance to be created 'UploadComplete': when Upload completes an upload. &$upload: an UploadBase child instance 'UploadFormInitDescriptor': After the descriptor for the upload form as been assembled. $descriptor: (array) the HTMLForm descriptor 'UploadFormSourceDescriptors': after the standard source inputs have been added to the descriptor $descriptor: (array) the HTMLForm descriptor 'UploadVerification': Additional chances to reject an uploaded file. Consider using UploadVerifyFile instead. string $saveName: destination file name string $tempName: filesystem path to the temporary file for checks string &$error: output: message key for message to show if upload canceled by returning false. May also be an array, where the first element is the message key and the remaining elements are used as parameters to the message. 'UploadVerifyFile': extra file verification, based on MIME type, etc. Preferred in most cases over UploadVerification. object $upload: an instance of UploadBase, with all info about the upload string $mime: The uploaded file's MIME type, as detected by MediaWiki. Handlers will typically only apply for specific MIME types. object &$error: output: true if the file is valid. Otherwise, an indexed array representing the problem with the file, where the first element is the message key and the remaining elements are used as parameters to the message. 'UploadComplete': Upon completion of a file upload. $uploadBase: UploadBase (or subclass) object. File can be accessed by $uploadBase->getLocalFile(). 'User::mailPasswordInternal': before creation and mailing of a user's new temporary password $user: the user who sent the message out $ip: IP of the user who sent the message out $u: the account whose new password will be set 'UserAddGroup': Called when adding a group; return false to override stock group addition. $user: the user object that is to have a group added &$group: the group to add, can be modified 'UserArrayFromResult': Called when creating an UserArray object from a database result. &$userArray: set this to an object to override the default object returned $res: database result used to create the object 'userCan': To interrupt/advise the "user can do X to Y article" check. If you want to display an error message, try getUserPermissionsErrors. $title: Title object being checked against $user : Current user object $action: Action being checked $result: Pointer to result returned if hook returns false. If null is returned, userCan checks are continued by internal code. 'UserCanSendEmail': To override User::canSendEmail() permission check. $user: User (object) whose permission is being checked &$canSend: bool set on input, can override on output 'UserClearNewTalkNotification': Called when clearing the "You have new messages!" message, return false to not delete it. $user: User (object) that will clear the message $oldid: ID of the talk page revision being viewed (0 means the most recent one) 'UserCreateForm': change to manipulate the login form $template: SimpleTemplate instance for the form 'UserEffectiveGroups': Called in User::getEffectiveGroups(). $user: User to get groups for &$groups: Current effective groups 'UserGetAllRights': After calculating a list of all available rights. &$rights: Array of rights, which may be added to. 'UserGetDefaultOptions': After fetching the core default, this hook is run right before returning the options to the caller. Warning: This hook is called for every call to User::getDefaultOptions(), which means it's potentially called dozens or hundreds of times. You may want to cache the results of non-trivial operations in your hook function for this reason. &$defaultOptions: Array of preference keys and their default values. 'UserGetEmail': Called when getting an user email address. $user: User object &$email: email, change this to override local email 'UserGetEmailAuthenticationTimestamp': Called when getting the timestamp of email authentication. $user: User object &$timestamp: timestamp, change this to override local email authentication timestamp 'UserGetImplicitGroups': DEPRECATED, called in User::getImplicitGroups(). &$groups: List of implicit (automatically-assigned) groups 'UserGetLanguageObject': Called when getting user's interface language object. $user: User object &$code: Language code that will be used to create the object $context: IContextSource object 'UserGetReservedNames': Allows to modify $wgReservedUsernames at run time. &$reservedUsernames: $wgReservedUsernames 'UserGetRights': Called in User::getRights(). $user: User to get rights for &$rights: Current rights 'UserIsBlockedFrom': Check if a user is blocked from a specific page (for specific block exemptions). $user: User in question $title: Title of the page in question &$blocked: Out-param, whether or not the user is blocked from that page. &$allowUsertalk: If the user is blocked, whether or not the block allows users to edit their own user talk pages. 'UserIsBlockedGlobally': Check if user is blocked on all wikis. &$user: User object $ip: User's IP address &$blocked: Whether the user is blocked, to be modified by the hook 'UserIsEveryoneAllowed': Check if all users are allowed some user right; return false if a UserGetRights hook might remove the named right. $right: The user right being checked 'UserLoadAfterLoadFromSession': Called to authenticate users on external or environmental means; occurs after session is loaded. $user: user object being loaded 'UserLoadDefaults': Called when loading a default user. $user: user object $name: user name 'UserLoadFromDatabase': Called when loading a user from the database. $user: user object &$s: database query object 'UserLoadFromSession': Called to authenticate users on external/environmental means; occurs before session is loaded. $user: user object being loaded &$result: set this to a boolean value to abort the normal authentication process 'UserLoadOptions': When user options/preferences are being loaded from the database. $user: User object &$options: Options, can be modified. 'UserLoginComplete': After a user has logged in. $user: the user object that was created on login $inject_html: Any HTML to inject after the "logged in" message. 'UserLoginForm': change to manipulate the login form $template: SimpleTemplate instance for the form 'UserLogout': Before a user logs out. $user: the user object that is about to be logged out 'UserLogoutComplete': After a user has logged out. $user: the user object _after_ logout (won't have name, ID, etc.) $inject_html: Any HTML to inject after the "logged out" message. $oldName: name of the user before logout (string) 'UserRemoveGroup': Called when removing a group; return false to override stock group removal. $user: the user object that is to have a group removed &$group: the group to be removed, can be modified 'UserRights': After a user's group memberships are changed. $user : User object that was changed $add : Array of strings corresponding to groups added $remove: Array of strings corresponding to groups removed 'UserRequiresHTTPS': Called to determine whether a user needs to be switched to HTTPS. $user: User in question. &$https: Boolean whether $user should be switched to HTTPS. 'UserResetAllOptions': Called in User::resetOptions() when user preferences have been requested to be reset. This hook can be used to exclude certain options from being reset even when the user has requested all prefs to be reset, because certain options might be stored in the user_properties database table despite not being visible and editable via Special:Preferences. $user: the User (object) whose preferences are being reset &$newOptions: array of new (site default) preferences $options: array of the user's old preferences $resetKinds: array containing the kinds of preferences to reset 'UserRetrieveNewTalks': Called when retrieving "You have new messages!" message(s). $user: user retrieving new talks messages $talks: array of new talks page(s) 'UserSaveSettings': Called when saving user settings. $user: User object 'UserSaveOptions': Called just before saving user preferences/options. $user: User object &$options: Options, modifiable 'UserSetCookies': Called when setting user cookies. $user: User object &$session: session array, will be added to $_SESSION &$cookies: cookies array mapping cookie name to its value 'UserSetEmail': Called when changing user email address. $user: User object &$email: new email, change this to override new email address 'UserSetEmailAuthenticationTimestamp': Called when setting the timestamp of email authentication. $user: User object &$timestamp: new timestamp, change this to override local email authentication timestamp 'UserToolLinksEdit': Called when generating a list of user tool links, e.g. "Foobar (Talk | Contribs | Block)". $userId: User id of the current user $userText: User name of the current user &$items: Array of user tool links as HTML fragments 'ValidateExtendedMetadataCache': Called to validate the cached metadata in FormatMetadata::getExtendedMeta (return false means cache will be invalidated and GetExtendedMetadata hook called again). $timestamp: The timestamp metadata was generated $file: The file the metadata is for 'UserMailerChangeReturnPath': Called to generate a VERP return address when UserMailer sends an email, with a bounce handling extension. $to: Array of MailAddress objects for the recipients &$returnPath: The return address string 'LoginFormValidErrorMessages': Called in LoginForm when a function gets valid error messages. Allows to add additional error messages (except messages already in LoginForm::$validErrorMessages). &$messages Already added messages (inclusive messages from LoginForm::$validErrorMessages) 'WantedPages::getQueryInfo': Called in WantedPagesPage::getQueryInfo(), can be used to alter the SQL query which gets the list of wanted pages. &$wantedPages: WantedPagesPage object &$query: query array, see QueryPage::getQueryInfo() for format documentation 'WatchArticle': Before a watch is added to an article. $user: user that will watch $page: WikiPage object to be watched &$status: Status object to be returned if the hook returns false 'WatchArticleComplete': After a watch is added to an article. $user: user that watched $page: WikiPage object watched 'WatchlistEditorBeforeFormRender': Before building the Special:EditWatchlist form, used to manipulate the list of pages or preload data based on that list. &$watchlistInfo: array of watchlisted pages in [namespaceId => ['title1' => 1, 'title2' => 1]] format 'WatchlistEditorBuildRemoveLine': when building remove lines in Special:Watchlist/edit. &$tools: array of extra links $title: Title object $redirect: whether the page is a redirect $skin: Skin object &$link: HTML link to title 'WebRequestPathInfoRouter': While building the PathRouter to parse the REQUEST_URI. $router: The PathRouter instance 'WebResponseSetCookie': when setting a cookie in WebResponse::setcookie(). Return false to prevent setting of the cookie. &$name: Cookie name passed to WebResponse::setcookie() &$value: Cookie value passed to WebResponse::setcookie() &$expire: Cookie expiration, as for PHP's setcookie() $options: Options passed to WebResponse::setcookie() 'WhatLinksHereProps': Allows annotations to be added to WhatLinksHere $row: The DB row of the entry. $title: The Title of the page where the link comes FROM $target: The Title of the page where the link goes TO &$props: Array of HTML strings to display after the title. 'WikiExporter::dumpStableQuery': Get the SELECT query for "stable" revisions dumps. One, and only one hook should set this, and return false. &$tables: Database tables to use in the SELECT query &$opts: Options to use for the query &$join: Join conditions 'WikiPageDeletionUpdates': manipulate the list of DataUpdates to be applied when a page is deleted. Called in WikiPage::getDeletionUpdates(). Note that updates specific to a content model should be provided by the respective Content's getDeletionUpdates() method. $page: the WikiPage $content: the Content to generate updates for &$updates: the array of DataUpdate objects. Hook function may want to add to it. 'wfShellWikiCmd': Called when generating a shell-escaped command line string to run a MediaWiki cli script. &$script: MediaWiki cli script path &$parameters: Array of arguments and options to the script &$options: Associative array of options, may contain the 'php' and 'wrapper' keys 'wgQueryPages': Called when initialising list of QueryPage subclasses, use this to add new query pages to be updated with maintenance/updateSpecialPages.php. $qp: The list of QueryPages 'XmlDumpWriterOpenPage': Called at the end of XmlDumpWriter::openPage, to allow extra metadata to be added. $obj: The XmlDumpWriter object. &$out: The output string. $row: The database row for the page. $title: The title of the page. 'XmlDumpWriterWriteRevision': Called at the end of a revision in an XML dump, to add extra metadata. $obj: The XmlDumpWriter object. &$out: The text being output. $row: The database row for the revision. $text: The revision text. 'XMPGetInfo': Called when obtaining the list of XMP tags to extract. Can be used to add additional tags to extract. &$items: Array containing information on which items to extract. See XMPInfo for details on the format. 'XMPGetResults': Called just before returning the results array of parsing xmp data. Can be used to post-process the results. &$data: Array of metadata sections (such as $data['xmp-general']) each section is an array of metadata tags returned (each tag is either a value, or an array of values). More hooks might be available but undocumented, you can execute "php maintenance/findHooks.php" to find hidden ones. <poem>