function auto_expire_uninstall in Auto Expire 5
Same name and namespace in other branches
- 7 auto_expire.install \auto_expire_uninstall()
File
- ./
auto_expire.install, line 71
Code
function auto_expire_uninstall() {
db_query('DROP TABLE {auto_expire}');
foreach (node_get_types() as $type => $name) {
$code = AUTO_EXPIRE_NODE_TYPE . $type;
variable_del($code . '_e');
variable_del($code . '_d');
variable_del($code . '_w');
variable_del($code . '_p');
}
variable_del(AUTO_EXPIRE_EMAIL . 'warn_subject');
variable_del(AUTO_EXPIRE_EMAIL . 'warn_body');
variable_del(AUTO_EXPIRE_EMAIL . 'expired_subject');
variable_del(AUTO_EXPIRE_EMAIL . 'expired_body');
}