You are here

function jdrupal_help in jDrupal 8.0.x

Same name and namespace in other branches
  1. 8 jdrupal.module \jdrupal_help()
  2. 7 jdrupal.module \jdrupal_help()

Implements hook_help().

File

./jdrupal.module, line 13
Contains jdrupal.module..

Code

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

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