front_page.install in Front Page 7
Same filename and directory in other branches
Install, update, and uninstall functions for the front page module.
File
front_page.installView source
<?php
/**
* @file
* Install, update, and uninstall functions for the front page module.
*/
/**
* Implements hook_uninstall().
*/
function front_page_uninstall() {
// Delete variables.
variable_del('front_page_breadcrumb');
variable_del('front_page_breadcrumb_redirect');
variable_del('special_notice_time');
variable_del('special_notice_text');
variable_del('front_1_type');
variable_del('front_1_text');
variable_del('front_1_redirect');
variable_del('front_1_php');
variable_del('front_2_type');
variable_del('front_2_text');
variable_del('front_2_redirect');
variable_del('front_2_php');
}
Functions
Name | Description |
---|---|
front_page_uninstall | Implements hook_uninstall(). |