superbiche
4/6/2016 - 12:46 PM

Update a Drupal module weight on install so it's loaded after contrib modules.

Update a Drupal module weight on install so it's loaded after contrib modules.

function your_module_name_install() {
  db_update('system')
    ->fields(array('weight' => your_preferred_weight))
    ->condition('name', 'your_module_name', '=')
    ->execute();
}