function datereminder_user_cancel in Date Reminder 7
Same name and namespace in other branches
- 6.2 includes/user.inc \datereminder_user_cancel()
Implements hook_user_cancel().
File
- ./
datereminder.module, line 893 - Support for reminders for nodes with dates.
Code
function datereminder_user_cancel($edit, $account, $method) {
// For the purposes of Date Reminder, there's no reason to keep reminders
// for a cancelled user.
datereminder_user_delete($account);
}