You are here

function auto_login_url_help in Auto Login URL 8

Same name and namespace in other branches
  1. 2.x auto_login_url.module \auto_login_url_help()

Implements hook_help().

File

./auto_login_url.module, line 13
Main file for auto_login_url module.

Code

function auto_login_url_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.auto_login_url':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This is a module that creates auto login URLs on demand or with tokens.') . ' </p>';
      return $output;
  }
}