function state_flow_permission in State Machine 7
Same name and namespace in other branches
- 7.3 modules/state_flow/state_flow.module \state_flow_permission()
- 7.2 modules/state_flow/state_flow.module \state_flow_permission()
Implements hook_permission().
File
- modules/state_flow/ state_flow.module, line 50 
- An implementation of node revision workflow for Drupal based on the State Machine system.
Code
function state_flow_permission() {
  return array(
    'manage content workflow' => array(
      'title' => t('Manage content workflow'),
      'description' => t('Manage the content workflow pages and operations.'),
    ),
  );
}