You are here

function drupalgap_help in DrupalGap 8.0.x

Same name and namespace in other branches
  1. 8 drupalgap.module \drupalgap_help()
  2. 7.2 drupalgap.module \drupalgap_help()
  3. 7 drupalgap.module \drupalgap_help()

Implements hook_help().

File

./drupalgap.module, line 8

Code

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

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