function contact_uninstall in Contact 6.2
Same name and namespace in other branches
- 7.2 contact.install \contact_uninstall()
Implements hook_uninstall().
File
- ./
contact.install, line 81 - Install, update and uninstall functions for the contact module.
Code
function contact_uninstall() {
// Remove tables.
drupal_uninstall_schema('contact');
variable_del('contact_default_status');
variable_del('contact_form_information');
variable_del('contact_hourly_threshold');
}