3 namespace MediaWiki\Hook
;
5 use MediaWiki\Context\IContextSource
;
6 use MediaWiki\User\User
;
9 * This is a hook handler interface, see docs/Hooks.md.
10 * Use the hook name "UserGetLanguageObject" to register handlers implementing this interface.
12 * @stable to implement
15 interface UserGetLanguageObjectHook
{
17 * This hook is called when getting a user's interface language object.
22 * @param string &$code Language code that will be used to create the object
23 * @param IContextSource $context
24 * @return bool|void True or no return value to continue or false to abort
26 public function onUserGetLanguageObject( $user, &$code, $context );