You are here

function notifications_user_delete in Notifications 7

Implementation of hook_user().

File

./notifications.module, line 657
Notifications module

Code

function notifications_user_delete($user) {

  // Delete related data on tables
  Notifications_Subscription::delete_multiple(array(
    'uid' => $user->uid,
  ));
}