You are here

function jwt_auth_issuer_help in JSON Web Token Authentication (JWT) 8

Same name and namespace in other branches
  1. 8.0 modules/jwt_auth_issuer/jwt_auth_issuer.module \jwt_auth_issuer_help()

Implements hook_help().

File

modules/jwt_auth_issuer/jwt_auth_issuer.module, line 13
Contains jwt_auth_issuer.module..

Code

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

    // Main module help for the jwt_auth_issuer module.
    case 'help.page.jwt_auth_issuer':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides an endpoint which will issue JWTs.') . '</p>';
      return $output;
  }
}