Manual:Hooks/GetLinkColours

From mediawiki.org
GetLinkColours
Available from version 1.12.0
modify the CSS class of an array of page links
Define function:
public static function onGetLinkColours( $linkcolour_ids, &$colours, $title ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"GetLinkColours": "MediaWiki\\Extension\\MyExtension\\Hooks::onGetLinkColours"
	}
}
Called from: File(s): LinkHolderArray.php
Interface: GetLinkColoursHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:GetLinkColours extensions.

Details[edit]

  • $linkcolour_ids: array of prefixed DB keys of the pages linked to, indexed by page_id.
  • &$colours: (output) array of CSS classes, indexed by prefixed DB keys
  • $title: Title of the page being parsed, on which the links will be shown (added in 1.35)

Notes[edit]

This hook is only called for each link where a target page exists.