Manual:Hooks/OutputPageMakeCategoryLinks
From MediaWiki.org
| OutputPageMakeCategoryLinks | |
|---|---|
| Available from version 1.13.0 (r36944) Called when links are about to be generated for the page's categories. |
|
*Define function: |
function fnMyHook( &$out, $categories, &$links ) { ... }
|
*Attach hook: |
$wgHooks['OutputPageMakeCategoryLinks'][] = 'MyExtensionHooks::someExample'; |
| Called from: | OutputPage.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:OutputPageMakeCategoryLinks extensions.
[edit] Details
Implementations should return false if they generate the category links, so the default link generation is skipped.
- &$out: OutputPage instance (object)
- $categories: associative array, keys are category names, values are category types ("normal" or "hidden")
- &$links: array, intended to hold the result. Must be an associative array with category types as keys and arrays of HTML links as values.
