You are here

function securelogin_help in Secure Login 6

Same name and namespace in other branches
  1. 8 securelogin.module \securelogin_help()
  2. 5 securelogin.module \securelogin_help()
  3. 7 securelogin.module \securelogin_help()

Display help and module information

File

./securelogin.module, line 6

Code

function securelogin_help($path = '', $arg) {
  $output = '';
  switch ($path) {
    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;
}