You are here

function workbench_email_help in Workbench Email 7

Same name and namespace in other branches
  1. 8 workbench_email.module \workbench_email_help()
  2. 7.3 workbench_email.module \workbench_email_help()
  3. 2.x workbench_email.module \workbench_email_help()

Implements hook_help().

File

./workbench_email.module, line 70
Code for the Workbench Email Module.

Code

function workbench_email_help($path, $arg) {
  switch ($path) {
    case 'admin/config/workbench/moderation/email-transitions':
      return '<p>' . t("The Workbench Moderation Email module keeps track of\n                       when a node moves from one state to another. This admin\n                       page can help you manage who gets emailed when those\n                       transitions happen.") . '</p>';
  }
}