< Manual:Hooks
GetLocalURL::Internal | |
---|---|
Available from version 1.19.0 (r94373, codereview) Allows to modify local URLs to internal pages. | |
Define function: | public static function onGetLocalURL_Internal( $title, &$url, $query ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"GetLocalURL::Internal": "MyExtensionHooks::onGetLocalURLInternal"
}
}
|
Called from: | File(s): Title.php |
Interface: | GetLocalURL__InternalHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:GetLocalURL::Internal extensions.
Details
- $title: Title object of page
- &$url: string value as output (out parameter, can modify)
- $query: query options passed to Title::getLocalURL()
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.