ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
name2claim.php
Go to the documentation of this file.
1 <?php // Maps AD LDAP to Claims from http://msdn.microsoft.com/en-us/library/hh159803.aspx
2 $attributemap = array(
3  'c' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/country',
4  'givenName' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname',
5  'mail' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress',
6  'memberOf' => 'http://schemas.microsoft.com/ws/2008/06/identity/claims/role',
7  'postalcode' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/postalcode',
8  'uid' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name',
9  'sn' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname',
10  'st' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/stateorprovince',
11  'streetaddress' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/streetaddress',
12  'telephonenumber' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/otherphone',
13 );
$attributemap
Definition: name2claim.php:2