You are here

function page_theme_debugger_install in Page Theme 7

Same name and namespace in other branches
  1. 6 page_theme_debugger/page_theme_debugger.install \page_theme_debugger_install()

Implements hook_install().

File

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

Code

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