content_theme_debugger.install in Content Theme 6
Same filename and directory in other branches
Install, update and uninstall functions for the content_theme_debugger module.
File
content_theme_debugger/content_theme_debugger.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the content_theme_debugger module.
*/
/**
* Implementation of hook_install().
*/
function content_theme_debugger_install() {
db_query('UPDATE {system} SET weight = 1000 WHERE name = "content_theme_debugger" AND type = "module"');
}
/**
* Implementation of hook_uninstall().
*/
function content_theme_debugger_uninstall() {
variable_del('content_theme_debugger_blacklist');
}
Functions
Name![]() |
Description |
---|---|
content_theme_debugger_install | Implementation of hook_install(). |
content_theme_debugger_uninstall | Implementation of hook_uninstall(). |