You are here

node_recur.install in Node recur 7

Same filename and directory in other branches
  1. 7.2 node_recur.install

File

node_recur.install
View 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

Namesort descending Description
node_recur_uninstall Implements hook_uninstall().