public function SimpleLdapUserMap::__get in Simple LDAP 7
File
- simple_ldap_user/
SimpleLdapUserMap.class.php, line 30 - Class defining the LDAP <-> Drupal user field mappings.
Class
- SimpleLdapUserMap
- @file Class defining the LDAP <-> Drupal user field mappings.
Code
public function __get($name) {
if (!isset($this->{$name})) {
return NULL;
}
return $this->{$name};
}