function httpswww_help in HTTPS and WWW Redirect 8
Same name and namespace in other branches
- 2.x httpswww.module \httpswww_help()
Implements hook_help().
File
- ./
httpswww.module, line 13 - Contains httpswww.module.
Code
function httpswww_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the httpswww module.
case 'help.page.httpswww':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Redirects to HTTPS with or without the "www" prefix.') . '</p>';
return $output;
default:
}
}