23 lines
417 B
Plaintext
23 lines
417 B
Plaintext
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* Implementation of hook_install().
|
|
*/
|
|
function contact_install() {
|
|
// Create tables.
|
|
drupal_install_schema('contact');
|
|
}
|
|
|
|
/**
|
|
* Implementation of hook_uninstall().
|
|
*/
|
|
function contact_uninstall() {
|
|
// Remove tables.
|
|
drupal_uninstall_schema('contact');
|
|
|
|
variable_del('contact_default_status');
|
|
variable_del('contact_form_information');
|
|
variable_del('contact_hourly_threshold');
|
|
}
|