You are here

page_theme_debugger.install in Page Theme 6

Same filename and directory in other branches
  1. 7 page_theme_debugger/page_theme_debugger.install

Install, update and uninstall functions for the page_theme_debugger module.

File

page_theme_debugger/page_theme_debugger.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the page_theme_debugger module.
 */

/**
 * Implementation of hook_install().
 */
function page_theme_debugger_install() {
  db_query('UPDATE {system} SET weight = 1000 WHERE name = "page_theme_debugger" AND type = "module"');
}

/**
 * Implementation of hook_uninstall().
 */
function page_theme_debugger_uninstall() {
  variable_del('page_theme_debugger_blacklist');
}

Functions

Namesort descending Description
page_theme_debugger_install Implementation of hook_install().
page_theme_debugger_uninstall Implementation of hook_uninstall().