You are here

function contact_uninstall in Drupal 7

Same name and namespace in other branches
  1. 5 modules/contact/contact.install \contact_uninstall()
  2. 6 modules/contact/contact.install \contact_uninstall()

Implements hook_uninstall().

File

modules/contact/contact.install, line 85
Install, update and uninstall functions for the contact module.

Code

function contact_uninstall() {
  variable_del('contact_default_status');
  variable_del('contact_threshold_limit');
  variable_del('contact_threshold_window');
}