You are here

drupalforfirebug_preprocess.install in Drupal For Firebug 7.2

File

drupalforfirebug_preprocess.install
View 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

Namesort descending Description
drupalforfirebug_preprocess_install Implementation of hook_install()
drupalforfirebug_preprocess_update_7000 Set Correct Weight for DFF Preprocess Module