You are here

function restrict_ip_uninstall in Restrict IP 7.2

Implements hook_uninstall().

File

./restrict_ip.install, line 11
Install file for Restrict IP Module. Contains install/uninstall hooks.

Code

function restrict_ip_uninstall() {
  variable_del('restrict_ip_enable');
  variable_del('restrict_ip_address_list');
  variable_del('restrict_ip_mail_address');
  variable_del('restrict_ip_watchdog');
  variable_del('restrict_ip_allow_role_bypass');
  variable_del('restrict_ip_bypass_action');
  variable_del('restrict_ip_white_black_list');
  variable_del('restrict_ip_page_whitelist');
  variable_del('restrict_ip_page_blacklist');
}