function shortcutperrole_help in Shortcut per Role 8
Implements hook_help().
File
- ./shortcutperrole.module, line 18 
- Allows users to manage customizable lists of shortcut links.
Code
function shortcutperrole_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    // Main module help for the shortcutperrole module.
    case 'help.page.shortcutperrole':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows creating default shortcut per role') . '</p>';
      return $output;
    default:
  }
}