You are here

function uuid_features_enable in UUID Features Integration 7

Same name and namespace in other branches
  1. 6 uuid_features.install \uuid_features_enable()

Implements hook_enable().

File

./uuid_features.install, line 10
Install, update and uninstall functions for the uuid_features module.

Code

function uuid_features_enable() {
  db_update('system')
    ->fields(array(
    'weight' => -50,
  ))
    ->condition('name', 'uuid_features')
    ->condition('type', 'module')
    ->execute();
}