You are here

drupalforfirebug.install in Drupal For Firebug 6

File

drupalforfirebug.install
View source
<?php

/**
* Implementation of hook_instal()
*/
function drupalforfirebug_install() {
  db_query("UPDATE {system} SET weight = 100000 WHERE name = 'drupalforfirebug'");
}
function drupalforfirebug_update_1() {
  $items = array();
  $items[] = update_sql("UPDATE {system} SET weight = 100000 WHERE name = 'drupalforfirebug'");
  return $items;
}

Functions

Namesort descending Description
drupalforfirebug_install Implementation of hook_instal()
drupalforfirebug_update_1