function letsencrypt_challenge_help in Let's Encrypt Challenge 1.x
Same name and namespace in other branches
- 7 letsencrypt_challenge.module \letsencrypt_challenge_help()
Implements hook_help().
File
- ./
letsencrypt_challenge.module, line 13 - Contains letsencrypt_challenge.module.
Code
function letsencrypt_challenge_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the letsencrypt_challenge module.
case 'help.page.letsencrypt_challenge':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows for a configuration of the challenge required to (re)generate the certificate from a remote location in manual mode.') . '</p>';
return $output;
default:
}
}