function LDAPInterface::retrieveAttribute in LDAP integration 5.2
Same name and namespace in other branches
- 5 ldap_integration/LDAPInterface.php \LDAPInterface::retrieveAttribute()
- 6 includes/LDAPInterface.inc \LDAPInterface::retrieveAttribute()
1 call to LDAPInterface::retrieveAttribute()
- LDAPInterface::writeAttributes in ldap_integration/
LDAPInterface.php
File
- ldap_integration/
LDAPInterface.php, line 198
Class
Code
function retrieveAttribute($dn, $attrname) {
$entries = $this
->retrieveAttributes($dn);
return $entries[strtolower($attrname)][0];
}