You are here

content_theme_debugger.install in Content Theme 7

Same filename and directory in other branches
  1. 6 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.
 */

/**
 * 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');
}