You are here

function bat_help in Booking and Availability Management Tools for Drupal 8

Implements hook_help().

File

./bat.module, line 22
Contains bat.module..

Code

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

    // Main module help for the bat module.
    case 'help.page.bat':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('A generalized Booking and Availability Management Framework') . '</p>';
      return $output;
    default:
  }
}