wiki.techinc.nl/includes/context/Hook/UserGetLanguageObjectHook.php

28 lines
696 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Hook;
use IContextSource;
use User;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "UserGetLanguageObject" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface UserGetLanguageObjectHook {
/**
* This hook is called when getting a user's interface language object.
*
* @since 1.35
*
* @param User $user
* @param string &$code Language code that will be used to create the object
* @param IContextSource $context
* @return bool|void True or no return value to continue or false to abort
*/
public function onUserGetLanguageObject( $user, &$code, $context );
}