You are here

function shib_auth_user_delete in Shibboleth Authentication 7.4

Same name and namespace in other branches
  1. 8 shib_auth.module \shib_auth_user_delete()

Implements hook_user_delete().

File

./shib_auth.module, line 962
Drupal Shibboleth authentication module.

Code

function shib_auth_user_delete($account) {
  db_delete('shib_authmap')
    ->condition('uid', $account->uid)
    ->execute();
}