function dynamic_background_install in Dynamic Background 6
Implementation of hook_install().
File
- ./
dynamic_background.install, line 12 - Handles the install and uninstall process for the module setting module weight and removes variables used by dynamic background.
Code
function dynamic_background_install() {
// Make this module's weight heavy, so it runs less and other modules.
db_query("UPDATE {system} SET weight = 200 WHERE type = 'module' AND name = 'dynamic_background'");
}