47 lines
1.1 KiB
PHP
Executable File
47 lines
1.1 KiB
PHP
Executable File
<?php
|
|
|
|
if (!defined('BASEPATH'))
|
|
exit('No direct script access allowed');
|
|
|
|
class Profile_model extends CI_model {
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
$this->load->database();
|
|
}
|
|
|
|
function getProfileById($id) {
|
|
$this->db->where('id', $id);
|
|
$query = $this->db->get('users');
|
|
return $query->row();
|
|
}
|
|
|
|
function updateProfile($id, $data, $group_name) {
|
|
$this->db->where('ion_user_id', $id);
|
|
$this->db->update($group_name, $data);
|
|
}
|
|
|
|
function updateIonUser($username, $email, $password, $ion_user_id) {
|
|
$uptade_ion_user = array(
|
|
'username' => $username,
|
|
'email' => $email,
|
|
'password' => $password
|
|
);
|
|
$this->db->where('id', $ion_user_id);
|
|
$this->db->update('users', $uptade_ion_user);
|
|
}
|
|
|
|
function getUsersGroups($id) {
|
|
$this->db->where('user_id', $id);
|
|
$query = $this->db->get('users_groups');
|
|
return $query;
|
|
}
|
|
|
|
function getGroups($group_id) {
|
|
$this->db->where('id', $group_id);
|
|
$query = $this->db->get('groups');
|
|
return $query;
|
|
}
|
|
|
|
}
|