You are here

function workflow_actions_help in Workflow 6.2

Same name and namespace in other branches
  1. 6 workflow_actions/workflow_actions.module \workflow_actions_help()

Implementation of hook_help().

File

workflow_actions/workflow_actions.module, line 26
Provide actions and triggers for workflows. Why it's own module? Some sites prefer rules, some prefer actions, all prefer a lower code footprint and better performance. Additional creadit to gcassie ( http://drupal.org/user/80260 ) for the…

Code

function workflow_actions_help($path, $arg) {
  switch ($path) {
    case 'admin/build/trigger/workflow':
      return t('Use this page to set actions to happen when transitions occur. To configure actions, use the <a href="@link">actions settings page</a>.', array(
        '@link' => url('admin/settings/actions'),
      ));
  }
}