function jammer_install in Jammer 7
Implements hook_install().
File
- ./
jammer.install, line 11 - Jammer install file
Code
function jammer_install() {
// Set module value about default 0 to make sure menu and path options are picked up on form_alter before jammer runs.
db_update('system')
->fields(array(
'weight' => 100,
))
->condition('name', 'jammer', '=')
->execute();
}