You are here

uuid_features.install in UUID Features Integration 6

Same filename and directory in other branches
  1. 7 uuid_features.install

File

uuid_features.install
View source
<?php

/**
 * Implementation of hook_enable().
 */
function uuid_features_enable() {
  db_query("UPDATE {system} SET weight = -50 WHERE name = 'uuid_features' AND type = 'module'");
}

/**
 * Update uuid_features module weight per http://drupal.org/node/1004478.
 */
function uuid_features_update_6100() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = -50 WHERE name = 'uuid_features' AND type = 'module'");
  return $ret;
}

Functions

Namesort descending Description
uuid_features_enable Implementation of hook_enable().
uuid_features_update_6100 Update uuid_features module weight per http://drupal.org/node/1004478.