You are here

function userswitch_help in User Switch 8

Implements hook_help().

File

./userswitch.module, line 14
Contains userswitch.module.

Code

function userswitch_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.userswitch':
      return t('The User Switch module allows the user to switch accounts.');
  }
}