Manual:Hooks/UserCreateForm
This feature was removed completely in version 1.33.0 (after being deprecated in 1.27.0). |
UserCreateForm | |
---|---|
Available from version 1.6.0 Removed in version 1.33.0 (Gerrit change 441513) Manipulate the user create form | |
Define function: | public static function onUserCreateForm( &$template ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"UserCreateForm": "MediaWiki\\Extension\\MyExtension\\Hooks::onUserCreateForm"
}
}
|
Called from: | File(s): specials/SpecialUserLogin.php |
Interface: | UserCreateFormHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:UserCreateForm extensions.
Details
[edit]- &$template: SimpleTemplate instance for the form
Deprecated
[edit]From MediaWiki 1.27 on, the hook is deprecated and superseded by AuthManager functionality. User creation form fields should be added by some authentication provider returning an instance of an appropriate AuthenticationRequest
subclass instance in getAuthenticationRequests()
, and that object can define the fields via getFieldInfo()
. The authentication provider can read the submitted data from the AuthenticationRequest
object via its testForAccountCreation
or beginPrimaryAccountCreation
/continuePrimaryAccountCreation
methods.
For purely cosmetic changes to the form, which don't need to be reflected to the API (such as adding more information or interactive widgets) the AuthChangeFormFields hook can be used.