You are here

cf.install in Common Functionality 7.2

Install file for common functionality module.

File

cf.install
View source
<?php

/**
 * @file
 * Install file for common functionality module.
 */

/**
 * Implementation of hook_install().
 */
function cf_install() {
  db_query('UPDATE {system} SET weight = -10 WHERE name = \'cf\'');
}

/**
 * Upgrade module from 7.x-1.x to 7.x-2.x.
 */
function cf_update_7200() {
  db_query('UPDATE {system} SET weight = -10 WHERE name = \'cf\'');
}

Functions

Namesort descending Description
cf_install Implementation of hook_install().
cf_update_7200 Upgrade module from 7.x-1.x to 7.x-2.x.