You are here

function partial_date_uninstall in Partial Date 7

Implements hook_uninstall().

File

./partial_date.install, line 104
Defines the schema for the partial date fields.

Code

function partial_date_uninstall() {
  module_load_include('module', 'partial_date');
  variable_del('partial_date_component_field_inline_styles');
  variable_del('partial_date_component_field_txt_inline_styles');
  variable_del('partial_date_format_types');
  foreach (partial_date_format_types() as $type => $label) {
    variable_del('partial_date_format_' . $type);
  }
}