Manual:Hooks/UserLoadOptions
Appearance
From mediawiki.org
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
This feature was removed from MediaWiki core in version 1.38.0 (after being deprecated in 1.37.0).
Please see LoadUserOptions for an alternative way to use this feature.
| UserLoadOptions | |
|---|---|
| Available from version 1.16.0 Removed in version 1.38.0 (Gerrit change 723014) When user options/preferences are being loaded from the database. | |
| Define function: | public static function onUserLoadOptions( User $user, &$options ) { ... } |
| Attach hook: | In extension.json:
{ "Hooks":{ "UserLoadOptions":"MediaWiki\\Extension\\MyExtension\\Hooks::onUserLoadOptions" } } |
| Called from: | File(s): User.php |
| Interface: | UserLoadOptionsHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:UserLoadOptions extensions.
Details
- $user: User object
- &$options: Options, can be modified.