function jwt_auth_consumer_help in JSON Web Token Authentication (JWT) 8
Same name and namespace in other branches
- 8.0 modules/jwt_auth_consumer/jwt_auth_consumer.module \jwt_auth_consumer_help()
Implements hook_help().
File
- modules/
jwt_auth_consumer/ jwt_auth_consumer.module, line 13 - Contains jwt_auth_consumer.module..
Code
function jwt_auth_consumer_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the jwt_auth_consumer module.
case 'help.page.jwt_auth_consumer':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Authenticates JWTs generated by the jwt_auth_issuer module.') . '</p>';
return $output;
}
}