You are here

function ldap_authentication_redirect_to_ldap_help in Lightweight Directory Access Protocol (LDAP) 7

File

ldap_authentication/ldap_authentication.inc, line 572
ldap_authn provides authentication against ldap server.

Code

function ldap_authentication_redirect_to_ldap_help() {
  if ($auth_conf = ldap_authentication_get_valid_conf() && $auth_conf->ldapUserHelpLinkUrl) {
    drupal_goto($auth_conf->ldapUserHelpLinkUrl);
  }
  else {
    return "Misconfigured LDAP Help Link";
  }
}