< Manual:Hooks 
 
      | SpecialStatsAddExtra | |
|---|---|
| Available from version 1.16.0 (r54516, codereview) Can be used to add extra statistic at the end of Special:Statistics. | |
| Define function: | public static function onSpecialStatsAddExtra( &$extraStats, IContextSource $context ) { ... }
 | 
| Attach hook: | In extension.json: {
	"Hooks": {
		"SpecialStatsAddExtra": "MyExtensionHooks::onSpecialStatsAddExtra"
	}
}
 | 
| Called from: | File(s): SpecialStatistics.php | 
| Interface: | SpecialStatsAddExtraHook.php | 
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:SpecialStatsAddExtra extensions.
Details
- &$extraStats: Array to save the new stats ( $extraStats['<name of statistic>'] => <value>; )
    This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.