You are here

function aes_user_delete in AES encryption 7

Implements hook_user_delete().

File

./aes.module, line 206
Main file of the AES encryption module.

Code

function aes_user_delete($account) {
  db_delete('aes_passwords')
    ->where("uid = :uid", array(
    ':uid' => $account->uid,
  ))
    ->execute();
}