Manual:Hooks/BeforeHttpsRedirect
Appearance
This feature was removed completely in version 1.37.0 (after being deprecated in 1.35.0). |
| BeforeHttpsRedirect | |
|---|---|
| Available from version 1.24.0 (Gerrit change 132952) Removed in version 1.37.0 (Gerrit change 675293) Called prior to forcing HTTP->HTTPS redirect. Use this hook to override how the redirect is output. | |
| Define function: | public static function onBeforeHttpsRedirect( IContextSource $context, string &$redirect ) { ... }
|
| Attach hook: | In extension.json:
{
"Hooks": {
"BeforeHttpsRedirect": "MediaWiki\\Extension\\MyExtension\\Hooks::onBeforeHttpsRedirect"
}
}
|
| Called from: | File(s): MediaWiki.php Function(s): maybeDoHttpsRedirect |
| Interface: | BeforeHttpsRedirectHook.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:BeforeHttpsRedirect extensions.
Details
[edit]- $context: An IContextSource instance
- &$redirect: A modifiable string URL