You are here

function comment_notify_user_cancel in Comment Notify 8

Same name and namespace in other branches
  1. 7 comment_notify.module \comment_notify_user_cancel()

Implements hook_user_cancel().

File

./comment_notify.module, line 326
This module provides comment follow-up e-mail notifications.

Code

function comment_notify_user_cancel($edit, $account, $method) {

  // This hook is invoked when the account is disabled.
  comment_notify_remove_user_settings($account
    ->id());
}