function front_page_uninstall in Front Page 6.2
Same name and namespace in other branches
- 7.2 front_page.install \front_page_uninstall()
- 7 front_page.install \front_page_uninstall()
Implements hook_uninstall().
File
- ./
front_page.install, line 18 - Install, update and uninstall functions for the front page module.
Code
function front_page_uninstall() {
drupal_uninstall_schema('front_page');
variable_del('front_page_enable');
variable_del('front_page_breadcrumb');
variable_del('front_page_breadcrumb_redirect');
variable_del('special_notice_time');
variable_del('special_notice_text');
}