You are here

function content_theme_debugger_install in Content Theme 7

Same name and namespace in other branches
  1. 6 content_theme_debugger/content_theme_debugger.install \content_theme_debugger_install()

Implements hook_install().

File

content_theme_debugger/content_theme_debugger.install, line 12
Install, update and uninstall functions for the content_theme_debugger module.

Code

function content_theme_debugger_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1000,
  ))
    ->condition('name', 'content_theme_debugger')
    ->condition('type', 'module')
    ->execute();
}