1 user.api.php hook_user_delete($account)

Respond to user deletion.

This hook is invoked from user_delete_multiple() after field_attach_delete() has been called and after the user has been removed from the database.

Modules should additionally implement hook_user_cancel() to process stored user data for other account cancellation methods.

Parameters

$account: The account that has been deleted.

See also

hook_user_predelete()

user_delete_multiple()

Related topics

File

core/modules/user/user.api.php, line 69
Hooks provided by the User module.

Code

function hook_user_delete($account) {
  backdrop_set_message(t('User: @name has been deleted.', array('@name' => $account->name)));
}