You are here

function workflow_help in Workflow 7.2

Same name and namespace in other branches
  1. 8 workflow.module \workflow_help()
  2. 5.2 workflow.module \workflow_help()
  3. 5 workflow.module \workflow_help()

Implements hook_help().

File

./workflow.module, line 38
Support workflows made up of arbitrary states.

Code

function workflow_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#workflow':
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Workflow module adds a field to Entities to
        store field values as Workflow states. You can control "state transitions"
        and add action to specific transitions.') . '</p>';
  }
  return $output;
}