aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-03-12 20:43:53 -0700
committerfriendica <info@friendica.com>2015-03-12 20:43:53 -0700
commit93caead072e3b5f1623fe0c61206e57da7ca20b3 (patch)
treed0af3f0ed615c28183089b2800a9422cc390c822 /mod
parentd60cb14c2f23f372dec5fed78420f8ced3942ea6 (diff)
downloadvolse-hubzilla-93caead072e3b5f1623fe0c61206e57da7ca20b3.tar.gz
volse-hubzilla-93caead072e3b5f1623fe0c61206e57da7ca20b3.tar.bz2
volse-hubzilla-93caead072e3b5f1623fe0c61206e57da7ca20b3.zip
try to allow translation of ax regs
Diffstat (limited to 'mod')
-rw-r--r--mod/id.php81
1 files changed, 52 insertions, 29 deletions
diff --git a/mod/id.php b/mod/id.php
index 00138cd29..d2776830d 100644
--- a/mod/id.php
+++ b/mod/id.php
@@ -78,6 +78,9 @@ function getUserData($handle=null)
intval($r[0]['channel_account_id'])
);
+
+
+
$gender = '';
if($p[0]['gender'] == t('Male'))
$gender = 'M';
@@ -132,34 +135,50 @@ function getUserData($handle=null)
}
+
+function translate_regs() {
+
+ // This exists to get around scoping rules
+
+ $attrMap = array(
+ 'namePerson/first' => t('First Name'),
+ 'namePerson/last' => t('Last Name'),
+ 'namePerson/friendly' => t('Nickname'),
+ 'namePerson' => t('Full Name'),
+ 'contact/internet/email' => t('Email'),
+ 'contact/email' => t('Email'),
+ 'media/image/aspect11' => t('Profile Photo'),
+ 'media/image' => t('Profile Photo'),
+ 'media/image/default' => t('Profile Photo'),
+ 'media/image/16x16' => t('Profile Photo 16px'),
+ 'media/image/32x32' => t('Profile Photo 32px'),
+ 'media/image/48x48' => t('Profile Photo 48px'),
+ 'media/image/64x64' => t('Profile Photo 64px'),
+ 'media/image/80x80' => t('Profile Photo 80px'),
+ 'media/image/128x128' => t('Profile Photo 128px'),
+ 'timezone' => t('Timezone'),
+ 'contact/web/default' => t('Homepage URL'),
+ 'language/pref' => t('Language'),
+ 'birthDate/birthYear' => t('Birth Year'),
+ 'birthDate/birthMonth' => t('Birth Month'),
+ 'birthDate/birthday' => t('Birth Day'),
+ 'birthDate' => t('Birthdate'),
+ 'gender' => t('Gender'),
+ );
+
+ return $attrMap;
+}
+
+
class MysqlProvider extends LightOpenIDProvider
{
- private $attrMap = array(
- 'namePerson/first' => 'First Name',
- 'namePerson/last' => 'Last Name',
- 'namePerson/friendly' => 'Nickname',
- 'namePerson' => 'Full Name',
- 'contact/internet/email' => 'Email',
- 'contact/email' => 'Email',
- 'media/image/aspect11' => 'Profile Photo',
- 'media/image' => 'Profile Photo',
- 'media/image/default' => 'Profile Photo',
- 'media/image/16x16' => 'Profile Photo 16px',
- 'media/image/32x32' => 'Profile Photo 32px',
- 'media/image/48x48' => 'Profile Photo 48px',
- 'media/image/64x64' => 'Profile Photo 64px',
- 'media/image/80x80' => 'Profile Photo 80px',
- 'media/image/128x128' => 'Profile Photo 128px',
- 'timezone' => 'Timezone',
- 'contact/web/default' => 'Homepage URL',
- 'language/pref' => 'Language',
- 'birthDate/birthYear' => 'Birth Year',
- 'birthDate/birthMonth' => 'Birth Month',
- 'birthDate/birthday' => 'Birth Day',
- 'birthDate' => 'Birthdate',
- 'gender' => 'Gender',
- );
-
+
+ // See http://openid.net/specs/openid-attribute-properties-list-1_0-01.html
+ // This list contains a few variations of these attributes to maintain
+ // compatibility with legacy clients
+
+ private $attrMap;
+
private $attrFieldMap = array(
'namePerson/first' => 'firstName',
'namePerson/last' => 'lastName',
@@ -181,11 +200,15 @@ class MysqlProvider extends LightOpenIDProvider
'language/pref' => 'language',
'birthDate/birthYear' => 'birthyear',
'birthDate/birthMonth' => 'birthmonth',
- 'birthDate/birthday' => 'birthday',
+ 'birthDate/birthday' => 'birthday',
'birthDate' => 'birthdate',
'gender' => 'gender',
);
-
+
+ function __construct() {
+ $this->attrMap = translate_regs();
+ }
+
function setup($identity, $realm, $assoc_handle, $attributes)
{
@@ -209,7 +232,7 @@ class MysqlProvider extends LightOpenIDProvider
if(isset($this->attrMap[$attr])) {
$o .= '<li>'
. '<input type="checkbox" name="attributes[' . $attr . ']"> '
- . $this->attrMap[$attr] . '(*)</li>';
+ . $this->attrMap[$attr] . ' <span class="required">*</span></li>';
}
}