function mail_safety_uninstall in Mail Safety 7
Same name and namespace in other branches
- 7.2 mail_safety.install \mail_safety_uninstall()
Implements hook_uninstall().
File
- ./
mail_safety.install, line 45 - Install, update, and uninstall functions for the Mail Safety module.
Code
function mail_safety_uninstall() {
variable_del('mail_safety_enabled');
variable_del('mail_safety_send_mail_to_dashboard');
variable_del('mail_safety_send_mail_to_default_mail');
variable_del('mail_safety_default_mail_address');
variable_del('mail_safety_mail_expire');
}