function msnf_install in Multistep Nodeform 7
Same name and namespace in other branches
- 6 msnf.install \msnf_install()
Implements hook_install().
File
- ./
msnf.install, line 11 - Installation routines for module "Multistep Nodeform".
Code
function msnf_install() {
// Set weight to 100 to make sure this module is the last one called on hooks.
db_update('system')
->fields(array(
'weight' => 100,
))
->condition('name', 'msnf')
->execute();
}