You are here

function system_status_uninstall in System Status 7

Same name and namespace in other branches
  1. 6.2 system_status.install \system_status_uninstall()

Implements hook_uninstall().

Removes all settings used by the module.

File

./system_status.install, line 12
Clean up file for system_status

Code

function system_status_uninstall() {
  variable_del('system_status_service_allow_drupalstatus');
  variable_del('system_status_public_allow_public');
  variable_del('system_status_public_allow_ips');
  variable_del('system_status_do_match_core');
  variable_del('system_status_do_match_contrib');
  variable_del('system_status_match_contrib_mode');
  variable_del('system_status_preg_match_contrib');
  variable_del('system_status_do_match_custom');
  variable_del('system_status_preg_match_custom');
  variable_del('system_status_token');
  variable_del('system_status_need_protect_token');
  variable_del('system_status_need_encryption');
  variable_del('system_status_encrypt_token');
}