wiki.techinc.nl/includes/context/Hook/UserGetLanguageObjectHook.php
James D. Forrester 4bae64d1c7 Namespace includes/context
Bug: T353458
Change-Id: I4dbef138fd0110c14c70214282519189d70c94fb
2024-02-08 11:07:01 -05:00

27 lines
729 B
PHP

<?php
namespace MediaWiki\Hook;
use MediaWiki\Context\IContextSource;
use MediaWiki\User\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 );
}