You are here

public static function LdapAuthenticationConfAdmin::getSaveableProperty in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.2 ldap_authentication/LdapAuthenticationConfAdmin.class.php \LdapAuthenticationConfAdmin::getSaveableProperty()
  2. 7.2 ldap_authentication/LdapAuthenticationConfAdmin.class.php \LdapAuthenticationConfAdmin::getSaveableProperty()
1 call to LdapAuthenticationConfAdmin::getSaveableProperty()
ldap_authentication_update_7100 in ldap_authentication/ldap_authentication.install
ldap_authentication and ldap_sso. enable ldap_sso if sso was enabled in ldap_authentication previously

File

ldap_authentication/LdapAuthenticationConfAdmin.class.php, line 229

Class

LdapAuthenticationConfAdmin

Code

public static function getSaveableProperty($property) {
  $ldap_authentication_conf = variable_get('ldap_authentication_conf', array());
  return isset($ldap_authentication_conf[$property]) ? $ldap_authentication_conf[$property] : FALSE;
}