You are here

function drupalforfirebug_preprocess_update_7000 in Drupal For Firebug 7.2

Same name and namespace in other branches
  1. 7 drupalforfirebug_preprocess.install \drupalforfirebug_preprocess_update_7000()

Set Correct Weight for DFF Preprocess Module

File

./drupalforfirebug_preprocess.install, line 16

Code

function drupalforfirebug_preprocess_update_7000() {
  $ret = array();
  db_update('system')
    ->fields(array(
    'weight' => -100000,
  ))
    ->condition('name', 'drupalforfirebug')
    ->execute();
  return $ret;
}