function inactive_user_user_cancel in Inactive User 7
Implements hook_user_cancel().
File
- ./
inactive_user.module, line 43 - The inactive user module controls inactive users.
Code
function inactive_user_user_cancel($edit, $account, $method) {
db_delete('inactive_users')
->condition('uid', $account->uid)
->execute();
}