Manual:Hooks/ExtensionTypes

From Linux Web Expert

ExtensionTypes
<translate> Available from <tvar name=1><translate> version <tvar </tvar></translate>
Called when generating the extensions credits, use this to change the table's headers.
<translate> Define function:</translate>
public static function onExtensionTypes( array &$extTypes ) { ... }
<translate> Attach hook:</translate> <translate> In <tvar name=1>extension.json</tvar>:</translate>
{
	"Hooks": {
		"ExtensionTypes": "MediaWiki\\Extension\\MyExtension\\Hooks::onExtensionTypes"
	}
}
<translate> Called from:</translate> <translate> File(s):</translate> specials/SpecialVersion.php
<translate> Interface:</translate> ExtensionTypesHook.php

<translate> For more information about attaching hooks, see <tvar name=1>Manual:Hooks </tvar>.</translate>
<translate> For examples of extensions using this hook, see <tvar name=cat>Category:ExtensionTypes extensions</tvar>.</translate>


Details

  • &$extTypes - associative array of extensions types, the keys are the strings you use as key in $wgExtensionCredits, the values are the messages as displayed on Special:Version (ie something coming from wfMessage)