content_theme_debugger.install in Content Theme 7
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.
*/
/**
* Implements hook_install().
*/
function content_theme_debugger_install() {
db_update('system')
->fields(array(
'weight' => 1000,
))
->condition('name', 'content_theme_debugger')
->condition('type', 'module')
->execute();
}
/**
* Implements hook_uninstall().
*/
function content_theme_debugger_uninstall() {
variable_del('content_theme_debugger_blacklist');
}
Functions
Name![]() |
Description |
---|---|
content_theme_debugger_install | Implements hook_install(). |
content_theme_debugger_uninstall | Implements hook_uninstall(). |