function state_flow_views_api in State Machine 7.2
Same name and namespace in other branches
- 7.3 modules/state_flow/state_flow.module \state_flow_views_api()
- 7 modules/state_flow/state_flow.module \state_flow_views_api()
Implements hook_views_api().
File
- modules/
state_flow/ state_flow.module, line 144 - An implementation of node revision workflow for Drupal based on the State Machine system.
Code
function state_flow_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'state_flow') . '/includes/views',
);
}