< Manual:Hooks
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 ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"GetLinkColours": "MyExtensionHooks::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

  • $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

Notes

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

This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.