You are here

function amswap_help in Admin Menu Swap 8

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

Implements hook_help().

File

./amswap.module, line 14
Contains amswap.module.

Code

function amswap_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name === 'help.page.amswap') {
    $output = '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t('Allows the administration menu to be customised per user role.') . '</p>';
    return $output;
  }
}