You are here

function state_flow_install in State Machine 7.2

Same name and namespace in other branches
  1. 6 modules/state_flow/state_flow.install \state_flow_install()
  2. 7 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();
}