function vertical_tabs_config_enable in Vertical Tabs Config 7
Implements hook_enable().
Force late execution of this module.
File
- ./vertical_tabs_config.install, line 13 
- Install and uninstall handling of module.
Code
function vertical_tabs_config_enable() {
  db_update('system')
    ->fields(array(
    'weight' => 1001,
  ))
    ->condition('type', 'module')
    ->condition('name', 'vertical_tabs_config')
    ->execute();
}