You are here

function date_test_feature_uninstall in Date 7.2

Same name and namespace in other branches
  1. 7.3 tests/date_test_feature/date_test_feature.install \date_test_feature_uninstall()

Implements hook_uninstall().

File

tests/date_test_feature/date_test_feature.install, line 11
Install, update and uninstall functions for the Date Test Feature module.

Code

function date_test_feature_uninstall() {
  node_type_delete('date_test');
  variable_del('node_preview_date_test_feature');
  node_types_rebuild();
  menu_rebuild();
}