function state_flow_state_flow_plugins in State Machine 6
Same name and namespace in other branches
- 7 modules/state_flow/state_flow.module \state_flow_state_flow_plugins()
- 7.2 modules/state_flow/state_flow.module \state_flow_state_flow_plugins()
Implementation of hook_state_flow_plugins().
File
- modules/
state_flow/ state_flow.module, line 186 - A base implementation of the state machine class and its relationship to revisions
Code
function state_flow_state_flow_plugins() {
$info = array();
$path = drupal_get_path('module', 'state_flow') . '/plugins';
$info['state_flow'] = array(
'handler' => array(
'class' => 'StateFlow',
'file' => 'state_flow.inc',
'path' => $path,
),
);
return $info;
}