page_theme_debugger.install in Page Theme 7
Same filename and directory in other branches
Install, update and uninstall functions for the page_theme_debugger module.
File
page_theme_debugger/page_theme_debugger.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the page_theme_debugger module.
*/
/**
* Implements hook_install().
*/
function page_theme_debugger_install() {
db_update('system')
->fields(array(
'weight' => 1000,
))
->condition('name', 'page_theme_debugger')
->condition('type', 'module')
->execute();
}
/**
* Implements hook_uninstall().
*/
function page_theme_debugger_uninstall() {
variable_del('page_theme_debugger_blacklist');
}
Functions
Name![]() |
Description |
---|---|
page_theme_debugger_install | Implements hook_install(). |
page_theme_debugger_uninstall | Implements hook_uninstall(). |