You are here

front_page.install in Front Page 7

Same filename and directory in other branches
  1. 6.2 front_page.install
  2. 7.2 front_page.install

Install, update, and uninstall functions for the front page module.

File

front_page.install
View 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

Namesort descending Description
front_page_uninstall Implements hook_uninstall().