function comment_alter_uninstall in Comment Alter 7
Implements hook_uninstall().
File
- ./
comment_alter.install, line 46 - Un/install functions for Comment alter.
Code
function comment_alter_uninstall() {
$node_types = array_keys(node_type_get_types());
foreach ($node_types as $node_type) {
variable_del('comment_alter_' . $node_type);
variable_del('comment_alter_diff_link_' . $node_type);
variable_del('comment_alter_root_only_' . $node_type);
}
}