You are here

dynamic_cache.install in Dynamic Cache 7

Same filename and directory in other branches
  1. 6 dynamic_cache.install

Install file for dynamic_cache module.

File

dynamic_cache.install
View source
<?php

/**
 * @file
 * Install file for dynamic_cache module.
 */

/**
 * Implements hook_install().
 */
function dynamic_cache_install() {

  // Set a very high module weight; Dynamic Cache's hook_boot() never returns,
  // so it MUST run after every other hook_boot().
  db_query("UPDATE {system} SET weight = 9999 WHERE name='dynamic_cache' AND type='module'");
}

Functions

Namesort descending Description
dynamic_cache_install Implements hook_install().