LdapRepository: Add a bunch of additional well known attribute names

This commit is contained in:
Johannes Meyer 2015-09-28 10:55:41 +02:00
parent e5f2174c1e
commit e1aab183e3

View File

@ -28,13 +28,18 @@ abstract class LdapRepository extends Repository
* @var array * @var array
*/ */
protected $normedAttributes = array( protected $normedAttributes = array(
'uid' => 'uid', 'uid' => 'uid',
'gid' => 'gid', 'gid' => 'gid',
'user' => 'user', 'user' => 'user',
'group' => 'group', 'group' => 'group',
'member' => 'member', 'member' => 'member',
'inetorgperson' => 'inetOrgPerson', 'memberuid' => 'memberUid',
'samaccountname' => 'sAMAccountName' 'posixgroup' => 'posixGroup',
'uniquemember' => 'uniqueMember',
'groupofnames' => 'groupOfNames',
'inetorgperson' => 'inetOrgPerson',
'samaccountname' => 'sAMAccountName',
'groupofuniquenames' => 'groupOfUniqueNames'
); );
/** /**