function users_jwt_help in JSON Web Token Authentication (JWT) 8
Implements hook_help().
File
- modules/
users_jwt/ users_jwt.module, line 13 - Contains users_jwt.module.
Code
function users_jwt_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the users_jwt module.
case 'help.page.users_jwt':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Manage one or more RSA public keys per user for JWT authentication') . '</p>';
return $output;
default:
}
}