function dynamic_background_panels_install in Dynamic Background 6
Implementation of hook_install().
File
- modules/
dynamic_background_panels/ dynamic_background_panels.install, line 11 - Handles install and uninstall of the module.
Code
function dynamic_background_panels_install() {
// Make this module's weight heavy, so it overrides dynamic background main module.
db_query("UPDATE {system} SET weight = 220 WHERE type = 'module' AND name = 'dynamic_background_panels'");
}