You are here

function workflow_notify_help in Workflow 7.2

Same name and namespace in other branches
  1. 7 workflow_notify/workflow_notify.module \workflow_notify_help()

Implements hook_help().

File

workflow_notify/workflow_notify.module, line 78
Notify roles for Workflow state transitions.

Code

function workflow_notify_help($path, $arg) {
  switch ($path) {
    case WORKFLOW_ADMIN_UI_PATH . '/notify/%':
      return '<p>' . t('The selected roles will be notified of each state change selected.') . '</p>';
  }
}