function context_node_uninstall in Context Node 6
Same name and namespace in other branches
- 7 context_node.install \context_node_uninstall()
Implement hook_uninstall()
File
- ./
context_node.install, line 49
Code
function context_node_uninstall() {
// Delete all existing variables
foreach (node_get_types('names') as $type => $type_name) {
variable_del("context_node_" . $type);
variable_del("context_node_default_" . $type);
}
drupal_uninstall_schema('context_node');
}