contact_uninstall

Definition

contact_uninstall()
modules/contact/contact.install, line 39

Description

Implementation of hook_uninstall().

Code

<?php
function contact_uninstall() {
  db_query('DROP TABLE {contact}');
  variable_del('contact_default_status');
  variable_del('contact_form_information');
  variable_del('contact_hourly_threshold');
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.