You are here

function ape_uninstall in Advanced Page Expiration 7

Implements hook_uninstall().

File

./ape.install, line 11
Install, update, and uninstall functions for advanced page expiration.

Code

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');
}