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