Mercurial > hg > rr-repo
diff modules/admin_menu/admin_menu_toolbar/admin_menu_toolbar.install @ 6:a75ead649730
added biblio, admin_menu and reference modules
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Fri, 20 Sep 2013 11:18:21 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/admin_menu/admin_menu_toolbar/admin_menu_toolbar.install Fri Sep 20 11:18:21 2013 +0100 @@ -0,0 +1,37 @@ +<?php + +/** + * @file + * Installation functionality for Administration menu toolbar module. + */ + +/** + * Implements hook_install(). + */ +function admin_menu_toolbar_install() { + // Required to load JS/CSS in hook_init() after admin_menu. + db_update('system') + ->fields(array('weight' => 101)) + ->condition('type', 'module') + ->condition('name', 'admin_menu_toolbar') + ->execute(); +} + +/** + * 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 admin_menu_toolbar_install() + */ +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(); +} +