MediaWiki REL1_35
|
Public Member Functions | |
onLinkBegin ( $skin, $target, &$html, &$customAttribs, &$query, &$options, &$ret) | |
This hook is called when generating internal and interwiki links in Linker::link(), before processing starts. | |
Definition at line 12 of file LinkBeginHook.php.
MediaWiki\Linker\Hook\LinkBeginHook::onLinkBegin | ( | $skin, | |
$target, | |||
& | $html, | ||
& | $customAttribs, | ||
& | $query, | ||
& | $options, | ||
& | $ret | ||
) |
This hook is called when generating internal and interwiki links in Linker::link(), before processing starts.
See documentation for Linker::link() for details on the expected meanings of parameters.
DummyLinker | $skin | Formerly a Linker/Skin, now a DummyLinker for b/c |
Title | $target | Title that the link is pointing to |
string | null | &$html | Contents that the <a> tag should have (raw HTML); null means "default" |
string[] | &$customAttribs | HTML attributes that the <a> tag should have, in associative array form, with keys and values unescaped. Should be merged with default values, with a value of false meaning to suppress the attribute. |
string[] | &$query | Query string to add to the generated URL (the bit after the "?"), in associative array form, with keys and values unescaped |
string[] | &$options | Array of options, which can include 'known', 'broken', 'noclasses' |
string | &$ret | Value to return if your hook returns false |
Implemented in MediaWiki\HookContainer\HookRunner.