Merge "Refactor ContributionsSpecialPage->contributionsSub to support markup overrides"
[mediawiki.git] / includes / api / Hook / APIQuerySiteInfoGeneralInfoHook.php
blob92b5174e04e26f446189444a0e482ebf8733166a
1 <?php
3 namespace MediaWiki\Api\Hook;
5 use MediaWiki\Api\ApiQuerySiteinfo;
7 /**
8 * This is a hook handler interface, see docs/Hooks.md.
9 * Use the hook name "APIQuerySiteInfoGeneralInfo" to register handlers implementing this interface.
11 * @stable to implement
12 * @ingroup Hooks
14 interface APIQuerySiteInfoGeneralInfoHook {
15 /**
16 * Use this hook to add extra information to the site's general information.
18 * @since 1.35
20 * @param ApiQuerySiteinfo $module Current ApiQuerySiteinfo module
21 * @param array &$results Array of results, add things here
22 * @return bool|void True or no return value to continue or false to abort
24 public function onAPIQuerySiteInfoGeneralInfo( $module, &$results );