function drupalforfirebug_preprocess_install in Drupal For Firebug 7
Same name and namespace in other branches
- 5 drupalforfirebug_preprocess.install \drupalforfirebug_preprocess_install()
- 6 drupalforfirebug_preprocess.install \drupalforfirebug_preprocess_install()
- 7.2 drupalforfirebug_preprocess.install \drupalforfirebug_preprocess_install()
Implementation of hook_install()
File
- ./
drupalforfirebug_preprocess.install, line 6
Code
function drupalforfirebug_preprocess_install() {
db_update('system')
->fields(array(
'weight' => -100000,
))
->condition('name', 'drupalforfirebug_preprocess')
->execute();
}