< Manual:Hooks
MessagesPreLoad | |
---|---|
Available from version 1.5.7 (r12999, codereview) When loading a message from the database | |
Define function: | public static function onMessagesPreLoad( $title, &$message, $code ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"MessagesPreLoad": "MyExtensionHooks::onMessagesPreLoad"
}
}
|
Called from: | File(s): language/MessageCache.php |
Interface: | MessagesPreLoadHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:MessagesPreLoad extensions.
Details
- $title: title of the message (string)
- $message: value (string), change it to the message you want to define
- $code: language code being requested (string)
This hook is sometimes used to programatically provide the text of a message. Note though that that will not work when the message's useDatabase
flag has been disabled.
See also
- MessageCache::get hook
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.