You are here

fbss_custom.install in Drupal Commons 6.2

(Un)installs the FBSS Customizations module.

File

modules/features/commons_status_streams/fbss_custom/fbss_custom.install
View source
<?php

/**
 * @file
 *   (Un)installs the FBSS Customizations module.
 */

/**
 * Implementation of hook_install().
 */
function fbss_custom_install() {

  // The weight must be lower than FBSMP so we can alter its form alters.
  db_query("UPDATE {system} SET weight = 3 WHERE name = 'fbss_custom'");
}

Functions

Namesort descending Description
fbss_custom_install Implementation of hook_install().