You are here

expire.install in Cache Expiration 7.2

Same filename and directory in other branches
  1. 6 expire.install
  2. 7 expire.install

Uninstall actions for Cache Expiration module.

File

expire.install
View source
<?php

/**
 * @file
 * Uninstall actions for Cache Expiration module.
 */

/**
 * Implements hook_uninstall().
 */
function expire_uninstall() {
  db_delete('variable')
    ->condition('name', 'expire_%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}

/**
 * Run updates to rebuild a registry.
 */
function expire_update_7201() {
}

Functions

Namesort descending Description
expire_uninstall Implements hook_uninstall().
expire_update_7201 Run updates to rebuild a registry.