You are here

function system_status_uninstall in System Status 6.2

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

Implements hook_uninstall().

Removes all settings used by the module.

File

./system_status.install, line 14

Code

function system_status_uninstall() {
  variable_del('system_status_service_allow_drupalstatus');
  variable_del('system_status_token');
  variable_del('system_status_encrypt_token');
}