You are here

ape.install in Advanced Page Expiration 7

Install, update, and uninstall functions for advanced page expiration.

File

ape.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for advanced page expiration.
 */

/**
 * Implements hook_uninstall().
 */
function ape_uninstall() {
  variable_del('ape_exceptions');
  variable_del('ape_exceptions_lifetime');
  variable_del('ape_exclusions');
  variable_del('ape_301_lifetime');
  variable_del('ape_302_lifetime');
  variable_del('ape_404_lifetime');
}

Functions

Namesort descending Description
ape_uninstall Implements hook_uninstall().