You are here

function urllogin_help in urllogin 8

Same name and namespace in other branches
  1. 6 urllogin.module \urllogin_help()
  2. 7 urllogin.module \urllogin_help()
  3. 2.x urllogin.module \urllogin_help()

Implements hook_help().

File

./urllogin.module, line 49
Module file for Urllogin.

Code

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

    // Main module help for the urllogin module.
    case 'help.page.urllogin':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allow login using link from URL') . '</p>';
      return $output;
  }
}