You are here

function bugherd_help in BugHerd 8

Implements hook_help().

File

./bugherd.module, line 14
BugHerd module functions.

Code

function bugherd_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the simple_user_management module.
    case 'help.page.bugherd':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('BugHerd is an issue tracking system built for designers and web developers. This module allows you to quickly and easily add BugHerd to your Drupal site. The module allows you grant access to BugHerd by roles and even turn it off for admin pages.') . '</p>';
      return $output;
    default:
  }
}