function quickbar_help_install in Quickbar 7.2
File
- modules/
quickbar_help/ quickbar_help.install, line 3
Code
function quickbar_help_install() {
// This has to be heavier than quickbar
db_update('system')
->fields(array(
'weight' => 5,
))
->condition('name', 'quickbar_help')
->condition('type', 'module')
->execute();
}