function securelogin_help in Secure Login 5
Same name and namespace in other branches
- 8 securelogin.module \securelogin_help()
- 6 securelogin.module \securelogin_help()
- 7 securelogin.module \securelogin_help()
Display help and module information
File
- ./
securelogin.module, line 6
Code
function securelogin_help($section = '') {
$output = '';
switch ($section) {
case "admin/help#securelogin":
$output = '<p>' . t("Enables passwords to be sent over a secure connection.") . '</p>';
break;
case "admin/settings/securelogin":
$output = '<p>' . t("Secure Login redirects any forms with passwords to a secure host address so that the password is not sent in cleartext. Users can be redirected to the original host address after logging in.") . '</p>';
break;
}
return $output;
}