You are here

function heartbeat_help in Heartbeat 8

Same name and namespace in other branches
  1. 7 heartbeat.module \heartbeat_help()

Implements hook_help().

File

./heartbeat.module, line 29
Contains heartbeat.module.

Code

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

    // Main module help for the heartbeat module.
    case 'help.page.heartbeat':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Heartbeat for Drupal 8') . '</p>';
      return $output;
    default:
  }
}