function state_flow_install in State Machine 7
Same name and namespace in other branches
- 6 modules/state_flow/state_flow.install \state_flow_install()
- 7.2 modules/state_flow/state_flow.install \state_flow_install()
Implements hook_install().
File
- modules/
state_flow/ state_flow.install, line 10 - Install file for the State Flow module.
Code
function state_flow_install() {
$result = db_update('system')
->fields(array(
'weight' => 5,
))
->condition('name', 'state_flow')
->execute();
}