ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
openid2name.php
Go to the documentation of this file.
1<?php
3 // Simple Registration + AX Schema
4 'http://axschema.org/namePerson/friendly' => 'displayName', // Alias/Username -> displayName
5 'openid.sreg.nickname' => 'displayName',
6 'http://axschema.org/contact/email' => 'mail', // Email
7 'openid.sreg.email' => 'mail',
8 'http://axschema.org/namePerson' => 'displayName', // Full name -> displayName
9 'openid.sreg.fullname' => 'displayName',
10 'http://axschema.org/contact/postalCode/home' => 'postalCode', // Postal code
11 'openid.sreg.postcode' => 'postalCode',
12 'http://axschema.org/contact/country/home' => 'countryName', // Country
13 'openid.sreg.country' => 'countryName',
14 'http://axschema.org/pref/language' => 'preferredLanguage', // Language
15 'openid.sreg.language' => 'preferredLanguage',
16 // Name
17 'http://axschema.org/namePerson/prefix' => 'personalTitle', // Name prefix
18 'http://axschema.org/namePerson/first' => 'givenName', // First name
19 'http://axschema.org/namePerson/last' => 'sn', // Last name
20
21 // Work
22 'http://axschema.org/company/name' => 'o', // Company name
23 'http://axschema.org/company/title' => 'title', // Job title
24
25 // Telephone
26 'http://axschema.org/contact/phone/default' => 'telephoneNumber', // Phone (preferred)
27 'http://axschema.org/contact/phone/home' => 'homePhone', // Phone (home)
28 'http://axschema.org/contact/phone/business' => 'telephoneNumber', // Phone (work)
29 'http://axschema.org/contact/phone/cell' => 'mobile', // Phone (mobile)
30 'http://axschema.org/contact/phone/fax' => 'facsimileTelephoneNumber', // Phone (fax)
31
32 // Further attributes can be found at http://www.axschema.org/types/
33);
An exception for terminatinating execution or to throw for unit testing.
$attributemap
Definition: openid2name.php:2