You are here

content_theme_debugger.install in Content Theme 6

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

Install, update and uninstall functions for the content_theme_debugger module.

File

content_theme_debugger/content_theme_debugger.install
View 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