gehe zum Quellcode dieser Datei
Datenstrukturen | |
| class | Auth_OpenID_SRegBase |
| class | Auth_OpenID_SRegRequest |
| class | Auth_OpenID_SRegResponse |
Namensbereiche | |
| namespace | OpenID |
Aufzählungen | |
| enum | Auth_OpenID_SREG_NS_URI_1_0 |
| enum | Auth_OpenID_SREG_NS_URI_1_1 |
| enum | Auth_OpenID_SREG_NS_URI |
Funktionen | |
| Auth_OpenID_checkFieldName ($field_name) | |
| Auth_OpenID_supportsSReg (&$endpoint) | |
Variablen | |
| global | $Auth_OpenID_sreg_data_fields |
| Auth_OpenID_checkFieldName | ( | $ | field_name | ) |
Check to see that the given value is a valid simple registration data field name. Return true if so, false if not.
Definiert in Zeile 65 der Datei SReg.php.
00066 { 00067 global $Auth_OpenID_sreg_data_fields; 00068 00069 if (!in_array($field_name, array_keys($Auth_OpenID_sreg_data_fields))) { 00070 return false; 00071 } 00072 return true; 00073 }
| Auth_OpenID_supportsSReg | ( | &$ | endpoint | ) |
Does the given endpoint advertise support for simple registration?
$endpoint: The endpoint object as returned by OpenID discovery. returns whether an sreg type was advertised by the endpoint
Definiert in Zeile 97 der Datei SReg.php.
00098 { 00099 return ($endpoint->usesExtension(Auth_OpenID_SREG_NS_URI_1_1) || 00100 $endpoint->usesExtension(Auth_OpenID_SREG_NS_URI_1_0)); 00101 }
| $Auth_OpenID_sreg_data_fields |
Initialisierung:
array(
'fullname' => 'Full Name',
'nickname' => 'Nickname',
'dob' => 'Date of Birth',
'email' => 'E-mail Address',
'gender' => 'Gender',
'postcode' => 'Postal Code',
'country' => 'Country',
'language' => 'Language',
'timezone' => 'Time Zone')
| Copyright © 2003 - 2009 MyOOS [Shopsystem]. All rights reserved. MyOOS [Shopsystem] is Free Software released under the GNU/GPL License. Webmaster: info@r23.de (Impressum) |
|