Manual:Hooks/SpecialWhatLinksHereLinks
SpecialWhatLinksHereLinks | |
---|---|
Available from version 1.26.0 Called every time a list of links is built for a list item for Special:WhatLinksHere | |
Define function: | public static function onSpecialWhatLinksHereLinks( &$list ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"SpecialWhatLinksHereLinks": "MediaWiki\\Extension\\MyExtension\\Hooks::onSpecialWhatLinksHereLinks"
}
}
|
Called from: | File(s): SpecialWhatLinksHere.php |
Interface: | SpecialWhatLinksHereLinksHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:SpecialWhatLinksHereLinks extensions.
Details
edit- &$list: Array of already added links
Usage
editThis hook can be used to add, remove or change the target of a link, which will be added after every list item on Special:WhatLinksHere.