You are here

function admin_menu_toolbar_update_6300 in Administration menu 7.3

Same name and namespace in other branches
  1. 6.3 admin_menu_toolbar/admin_menu_toolbar.install \admin_menu_toolbar_update_6300()

Set module weight to a value higher than admin_menu.

At this point, admin_menu should have a weight of 100. To account for customized weights, we increase the weight relatively.

See also

admin_menu_toolbar_install()

File

admin_menu_toolbar/admin_menu_toolbar.install, line 28
Installation functionality for Administration menu toolbar module.

Code

function admin_menu_toolbar_update_6300() {
  $weight = db_query("SELECT weight FROM {system} WHERE type = 'module' AND name = 'admin_menu'")
    ->fetchField();
  $weight++;
  db_update('system')
    ->fields(array(
    'weight' => $weight,
  ))
    ->condition('type', 'module')
    ->condition('name', 'admin_menu_toolbar')
    ->execute();
}