wiki.techinc.nl/includes/user/Options/Hook/LoadUserOptionsHook.php
Petr Pchelko b27d33cc5c Introduce new hooks for UserOptionsManager
Bug: T286576
Change-Id: Ib960ec594d376e086da868d216dd85c8ea6bba14
2021-07-21 06:20:54 -07:00

25 lines
668 B
PHP

<?php
namespace MediaWiki\User\Options\Hook;
use MediaWiki\User\UserIdentity;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "LoadUserOptions" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface LoadUserOptionsHook {
/**
* This hook is called when user options/preferences are being loaded from the database.
*
* @since 1.37
*
* @param UserIdentity $user
* @param array &$options Options, can be modified.
* @return void This hook must not abort, it must return no value
*/
public function onLoadUserOptions( UserIdentity $user, array &$options ): void;
}