drupalforfirebug.install in Drupal For Firebug 7.2
Same filename and directory in other branches
File
drupalforfirebug.installView source
<?php
/**
* Implementation of hook_instal()
*/
function drupalforfirebug_install() {
db_update('system')
->fields(array(
'weight' => 100000,
))
->condition('name', 'drupalforfirebug')
->execute();
}
/**
* Set Correct Weight for DFF Module
*/
function drupalforfirebug_update_7000() {
$ret = array();
db_update('system')
->fields(array(
'weight' => 100000,
))
->condition('name', 'drupalforfirebug')
->execute();
return $ret;
}
Functions
Name![]() |
Description |
---|---|
drupalforfirebug_install | Implementation of hook_instal() |
drupalforfirebug_update_7000 | Set Correct Weight for DFF Module |