Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
account_field_split.install 361 B
<?php

/**
 * @file
 * Install functions for the account field split module.
 */

/**
 * Implements hook_enable().
 */
function account_field_split_install() {
  module_set_weight('account_field_split', 101);
}

/**
 * Run the module alter after other modules.
 */
function account_field_split_update_9001() {
  module_set_weight('account_field_split', 101);
}