You are here

function recovery_pass_uninstall in Recovery Password (Email New Password) 7

Implements hook_uninstall().

File

./recovery_pass.install, line 52
Install, update, and uninstall functions for the Recovery Password module.

Code

function recovery_pass_uninstall() {
  variable_del('recovery_pass_help_text');
  variable_del('recovery_pass_email_subject');
  variable_del('recovery_pass_email_text');
  variable_del('recovery_pass_old_pass_show');
  variable_del('recovery_pass_old_pass_warning');
  variable_del('recovery_pass_fpass_redirect');
  variable_del('recovery_pass_expiry_period');
}