< Manual:Hooks
AbortNewAccount
Available from version 1.5.8
Removed in version 1.33.0
Can be used to cancel user account creation
Define function:
public static function onAbortNewAccount( User $user, &$message ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"AbortNewAccount": "MyExtensionHooks::onAbortNewAccount"
	}
}
Called from: File(s): specials/SpecialUserLogin.php
Interface: AbortNewAccountHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:AbortNewAccount extensions.

Details

  • $user: the User object about to be created (read-only, incomplete)
  • $message: out parameter: error message to display on abort

Notes

  • Return false to cancel account creation.
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.