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