103 lines
2.5 KiB
PHP
103 lines
2.5 KiB
PHP
<?php
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/*
|
|
* userPlane
|
|
*
|
|
* @author userPlane Developers & Contributors
|
|
* @copyright Copyright (c) 2012 - 2017 userPlane.com
|
|
* @license https://userplane.com/license.txt
|
|
* @link https://userplane.com
|
|
*/
|
|
|
|
/**
|
|
* Class Mdl_User_Custom
|
|
*/
|
|
class Mdl_User_Custom extends Validator
|
|
{
|
|
public static $positions = array(
|
|
'custom_fields',
|
|
'account_information',
|
|
'address',
|
|
'tax_information',
|
|
'contact_information'
|
|
);
|
|
public $table = 'ip_user_custom';
|
|
public $primary_key = 'ip_user_custom.user_custom_id';
|
|
|
|
public function default_select()
|
|
{
|
|
$this->db->select('SQL_CALC_FOUND_ROWS ip_user_custom.*, ip_custom_fields.*', false);
|
|
}
|
|
|
|
public function default_join()
|
|
{
|
|
$this->db->join('ip_custom_fields', 'ip_user_custom.user_custom_fieldid = ip_custom_fields.custom_field_id');
|
|
}
|
|
|
|
public function default_order_by()
|
|
{
|
|
$this->db->order_by('custom_field_table ASC, custom_field_order ASC, custom_field_label ASC');
|
|
}
|
|
|
|
/**
|
|
* @param $user_id
|
|
* @param $db_array
|
|
* @return bool|string
|
|
*/
|
|
public function save_custom($user_id, $db_array)
|
|
{
|
|
$result = $this->validate($db_array);
|
|
|
|
if ($result === true) {
|
|
$form_data = isset($this->_formdata) ? $this->_formdata : null;
|
|
|
|
if (is_null($form_data)) {
|
|
return true;
|
|
}
|
|
|
|
$user_custom_id = null;
|
|
|
|
foreach ($form_data as $key => $value) {
|
|
$db_array = array(
|
|
'user_id' => $user_id,
|
|
'user_custom_fieldid' => $key,
|
|
'user_custom_fieldvalue' => $value
|
|
);
|
|
|
|
$user_custom = $this->where('user_id', $user_id)->where('user_custom_fieldid', $key)->get();
|
|
|
|
if ($user_custom->num_rows()) {
|
|
$user_custom_id = $user_custom->row()->user_custom_id;
|
|
}
|
|
|
|
parent::save($user_custom_id, $db_array);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @param integer $user_id
|
|
* @return $this
|
|
*/
|
|
public function by_id($user_id)
|
|
{
|
|
$this->db->where('ip_user_custom.user_id', $user_id);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param integer $user_id
|
|
* @return mixed
|
|
*/
|
|
public function get_by_useid($user_id)
|
|
{
|
|
$result = $this->where('ip_user_custom.user_id', $user_id)->get()->result();
|
|
return $result;
|
|
}
|
|
|
|
}
|