public function SimpleLdapSSO::getSidAttribute in Simple LDAP 7.2
Same name and namespace in other branches
- 7 simple_ldap_sso/SimpleLdapSSO.class.php \SimpleLdapSSO::getSidAttribute()
The attribute name where the sid will be stored.
1 call to SimpleLdapSSO::getSidAttribute()
- SimpleLdapSSO::getHashedSid in simple_ldap_sso/
SimpleLdapSSO.class.php - The hashed sid, as stored on LDAP.
File
- simple_ldap_sso/
SimpleLdapSSO.class.php, line 56 - SimpleLdapSSO object.
Class
- SimpleLdapSSO
- @file SimpleLdapSSO object.
Code
public function getSidAttribute() {
if (!isset($this->sidAttribute)) {
$this->sidAttribute = variable_get('simple_ldap_sso_attribute_sid', FALSE);
}
return $this->sidAttribute;
}