dynamic_cache.install in Dynamic Cache 6
Same filename and directory in other branches
Install file for dynamic_cache module.
File
dynamic_cache.installView 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 = 999 WHERE name='dynamic_cache' AND type='module'");
}
Functions
Name![]() |
Description |
---|---|
dynamic_cache_install | Implements hook_install(). |