You are here

function warden_uninstall in Warden 6

Same name and namespace in other branches
  1. 7 warden.install \warden_uninstall()

Implements hook_uninstall().

Removes all settings used by the module.

File

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

Code

function warden_uninstall() {
  variable_del('warden_allow_requests');
  variable_del('warden_public_allow_ips');
  variable_del('warden_match_core');
  variable_del('warden_match_contrib');
  variable_del('warden_match_contrib_mode');
  variable_del('warden_preg_match_contrib');
  variable_del('warden_match_custom');
  variable_del('warden_preg_match_custom');
  variable_del('warden_token');
}