function warden_uninstall in Warden 7
Same name and namespace in other branches
- 6 warden.install \warden_uninstall()
Implements hook_uninstall().
Removes all settings used by the module.
File
- ./
warden.install, line 13 - 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');
variable_del('warden_need_protect_token');
variable_del('warden_encrypt_token');
}