2019-07-17 20:08:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2019-07-17 20:31:04 +00:00
|
|
|
* @copyright Copyright (C) 2005-2010 Keyboard Monkeys Ltd. http://www.kb-m.com
|
2019-07-17 20:08:50 +00:00
|
|
|
* @license http://creativecommons.org/licenses/BSD/ BSD License
|
|
|
|
* @author Keyboard Monkey Ltd
|
|
|
|
* @since CommunityID 0.9
|
|
|
|
* @package CommunityID
|
|
|
|
* @packager Keyboard Monkeys
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-07-17 20:16:19 +00:00
|
|
|
class Model_Fields extends Monkeys_Db_Table_Gateway
|
2019-07-17 20:08:50 +00:00
|
|
|
{
|
|
|
|
protected $_name = 'fields';
|
|
|
|
protected $_primary = 'id';
|
2019-07-17 20:16:19 +00:00
|
|
|
protected $_rowClass = 'Model_Field';
|
2019-07-17 20:08:50 +00:00
|
|
|
|
|
|
|
private $_fieldsNames= array();
|
|
|
|
|
2019-07-17 20:31:04 +00:00
|
|
|
public function getAll()
|
|
|
|
{
|
|
|
|
$select = $this->select();
|
|
|
|
|
|
|
|
return $this->fetchAll($select);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getValues(Users_Model_Profile $profile)
|
2019-07-17 20:08:50 +00:00
|
|
|
{
|
|
|
|
$select = $this->select()
|
|
|
|
->setIntegrityCheck(false)
|
|
|
|
->from('fields')
|
2019-07-17 20:31:04 +00:00
|
|
|
->joinLeft('fields_values',
|
|
|
|
$this->getAdapter()->quoteInto("fields_values.field_id=fields.id AND fields_values.profile_id=?", $profile->id),
|
|
|
|
array('user_id', 'profile_id', 'field_id', 'value')
|
|
|
|
);
|
2019-07-17 20:08:50 +00:00
|
|
|
|
|
|
|
return $this->fetchAll($select);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFieldName($fieldIdentifier)
|
|
|
|
{
|
|
|
|
if (!$this->_fieldsNames) {
|
|
|
|
foreach ($this->fetchAll($this->select()) as $field) {
|
|
|
|
$this->_fieldsNames[$field->openid] = $field->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->_fieldsNames[$fieldIdentifier];
|
|
|
|
}
|
|
|
|
|
2019-07-17 20:31:04 +00:00
|
|
|
public function getByOpenIdIdentifier($openid)
|
|
|
|
{
|
|
|
|
$select = $this->select()
|
|
|
|
->where('openid=?', $openid);
|
|
|
|
|
|
|
|
return $this->fetchRow($select);
|
|
|
|
}
|
|
|
|
|
2019-07-17 20:08:50 +00:00
|
|
|
private function _translationPlaceholders()
|
|
|
|
{
|
|
|
|
translate('Nickname');
|
|
|
|
translate('E-mail');
|
|
|
|
translate('Full Name');
|
|
|
|
translate('Date of Birth');
|
|
|
|
translate('Gender');
|
|
|
|
translate('Postal Code');
|
|
|
|
translate('Country');
|
|
|
|
translate('Language');
|
|
|
|
translate('Time Zone');
|
|
|
|
}
|
|
|
|
}
|