You are here

function httpswww_help in HTTPS and WWW Redirect 2.x

Same name and namespace in other branches
  1. 8 httpswww.module \httpswww_help()

Implements hook_help().

File

./httpswww.module, line 8

Code

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

    // Main module help for the httpswww module.
    case 'help.page.httpswww':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Redirects to HTTPS with or without the "www" prefix.') . '</p>';
      return $output;
    default:
  }
}