You are here

function user_register_notify_uninstall in User registration notification 5

Same name and namespace in other branches
  1. 6 user_register_notify.install \user_register_notify_uninstall()
  2. 7 user_register_notify.install \user_register_notify_uninstall()

Implementation of hook_uninstall().

File

./user_register_notify.install, line 20
Notifies administrator of new user registrations.

Code

function user_register_notify_uninstall() {
  variable_del('user_register_notify_type');
  variable_del('user_register_notify_mailto');
  variable_del('user_register_notify_roles');
  variable_del('user_register_notify_subject');
  variable_del('user_register_notify_body');
  variable_del('user_register_notify_alert');
}