You are here

function amswap_help in Admin Menu Swap 7.2

Same name and namespace in other branches
  1. 8 amswap.module \amswap_help()

Implements hook_help().

File

./amswap.module, line 16
Contains amswap.module.

Code

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

    // Main module help for the amswap module.
    case 'help.page.amswap':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows the administration menu to be customised per user role.') . '</p>';
      return $output;
    default:
  }
}