node_recur.install in Node recur 7
Same filename and directory in other branches
File
node_recur.installView source
<?php
/**
* Implements hook_uninstall().
*/
function node_recur_uninstall() {
foreach (node_type_get_types() as $type => $info) {
variable_del("node_recur_enabled_node_type_{$type}");
variable_del("node_recur_allow_past_dates_node_type_{$type}");
variable_del("node_recur_max_span_node_type_{$type}");
variable_del("node_recur_date_field_node_type_{$type}");
variable_del("node_recur_node_form_node_type_{$type}");
}
}
Functions
Name | Description |
---|---|
node_recur_uninstall | Implements hook_uninstall(). |