function internal_nodes_uninstall in Internal Nodes 7
Implements hook_uninstall().
File
- ./
internal_nodes.install, line 11 - Installation file for the Internal node module
Code
function internal_nodes_uninstall() {
// Remove variables.
variable_del('internal_nodes_outbound_alter');
$types = node_type_get_types();
foreach ($types as $key => $type) {
variable_del('internal_nodes_action_' . $key);
variable_del('internal_nodes_url_' . $key);
variable_del('internal_nodes_nodes_' . $key);
}
}