class SimpleLdapUser in Simple LDAP 8
Hierarchy
- class \Drupal\simple_ldap_user\SimpleLdapUser
Expanded class hierarchy of SimpleLdapUser
2 files declare their use of SimpleLdapUser
- SimpleLdapUserEvent.php in modules/
simple_ldap_user/ src/ Events/ SimpleLdapUserEvent.php - SimpleLdapUserManagerTest.php in modules/
simple_ldap_user/ tests/ src/ Unit/ SimpleLdapUserManagerTest.php - Contains \Drupal\Tests\simple_ldap\Unit\SimpleLdapUserManagerTest
File
- modules/
simple_ldap_user/ src/ SimpleLdapUser.php, line 5
Namespace
Drupal\simple_ldap_userView source
class SimpleLdapUser {
/**
* @var array
*/
protected $attributes;
/**
* @var string
*/
protected $dn;
public function __construct($dn, $attributes) {
$this->dn = $dn;
$this->attributes = $attributes;
}
public function getDn() {
return $this->dn;
}
public function getAttributes() {
return $this->attributes;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SimpleLdapUser:: |
protected | property | ||
SimpleLdapUser:: |
protected | property | ||
SimpleLdapUser:: |
public | function | ||
SimpleLdapUser:: |
public | function | ||
SimpleLdapUser:: |
public | function |