<?php
/**
 * @file
 * Install, update and uninstall functions for the spaces_user module.
 *
 */


/**
 * Implements hook_enable().
 */
function spaces_user_enable() {
  // Weight spaces_user() to just above PURL.
  db_update('system')
      ->fields(array('weight' =>  -19))
      ->condition('name', 'spaces_user')
      ->condition('type', 'module')
      ->execute();
}

