uuid_features.install 337 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the uuid_features module.
  5. *
  6. */
  7. /**
  8. * Implements hook_enable().
  9. */
  10. function uuid_features_enable() {
  11. db_update('system')
  12. ->fields(array(
  13. 'weight' => -50,
  14. ))
  15. ->condition('name', 'uuid_features')
  16. ->condition('type', 'module')
  17. ->execute();
  18. }