You are here

date_test_feature.install in Date 7.2

Same filename and directory in other branches
  1. 7.3 tests/date_test_feature/date_test_feature.install

Install, update and uninstall functions for the Date Test Feature module.

File

tests/date_test_feature/date_test_feature.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Date Test Feature module.
 */

/**
 * Implements hook_uninstall().
 */
function date_test_feature_uninstall() {
  node_type_delete('date_test');
  variable_del('node_preview_date_test_feature');
  node_types_rebuild();
  menu_rebuild();
}

Functions

Namesort descending Description
date_test_feature_uninstall Implements hook_uninstall().