Manual:Hooks/GetFullURL
GetFullURL | |
---|---|
Available from version 1.6.0 Used to modify fully-qualified URLs used in redirects/export/offsite data | |
Define function: | public static function onGetFullURL( $title, $url, $query ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"GetFullURL": "MediaWiki\\Extension\\MyExtension\\Hooks::onGetFullURL"
}
}
|
Called from: | File(s): Title.php Function(s): Title::getFullURL() |
Interface: | GetFullURLHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:GetFullURL extensions.
Details
edit$title
: Title object of page$url
: string value as output (out parameter, can modify)$query
: query options passed toTitle::getFullURL()