You are here

date_all_day_test_feature.install in Date 7.2

Uninstall functions for the Date All Day Test Feature module.

File

date_all_day/tests/date_all_day_test_feature/date_all_day_test_feature.install
View source
<?php

/**
 * @file
 * Uninstall functions for the Date All Day Test Feature module.
 */

/**
 * Implements hook_uninstall().
 */
function date_all_day_test_feature_uninstall() {

  // Delete the bundled content type.
  node_type_delete('date_all_day_test');
  variable_del('node_preview_date_all_day_test_feature');
  node_types_rebuild();
  menu_rebuild();
}

Functions