|
MediaWiki master
|
This is a hook handler interface, see docs/Hooks.md. More...
Inherited by MediaWiki\HookContainer\HookRunner.
Public Member Functions | |
| onInitializeArticleMaybeRedirect ( $title, $request, &$ignoreRedirect, &$target, &$article) | |
| Use this hook to override whether a title is a redirect. | |
This is a hook handler interface, see docs/Hooks.md.
Use the hook name "InitializeArticleMaybeRedirect" to register handlers implementing this interface.
Definition at line 16 of file InitializeArticleMaybeRedirectHook.php.
| MediaWiki\Hook\InitializeArticleMaybeRedirectHook::onInitializeArticleMaybeRedirect | ( | $title, | |
| $request, | |||
| & | $ignoreRedirect, | ||
| & | $target, | ||
| & | $article ) |
Use this hook to override whether a title is a redirect.
| Title | $title | Title object for the current page |
| WebRequest | $request | |
| bool | &$ignoreRedirect | When set to true, the title will not redirect. |
| Title | string | &$target | Set to an URL to do a HTTP redirect, or a Title to use that title instead of the original, without doing a HTTP redirect. |
| Article | &$article | The Article object that belongs to $title. Passed as a reference for legacy reasons, but should not be changed. |
Implemented in MediaWiki\HookContainer\HookRunner.