You are here

function restrict_by_ip_user_delete in Restrict Login or Role Access by IP Address 7.3

Same name and namespace in other branches
  1. 8.4 restrict_by_ip.module \restrict_by_ip_user_delete()

Implementation of hook_user_delete().

File

./restrict_by_ip.module, line 129
Allows the admin to select which ip addresses role or a user can login from for this site Some of the code below is taken from the cck_ipaddress_module

Code

function restrict_by_ip_user_delete($account) {
  if ($account->uid != 0) {
    db_query("DELETE FROM {restrict_by_ip} WHERE uid = :uid", array(
      ':uid' => $account->uid,
    ));
  }
}