| 1 |
<?php |
| 2 |
|
| 3 |
// If this file is called directly, abort. |
| 4 |
if ( ! defined( 'WPINC' ) ) { |
| 5 |
die; |
| 6 |
} |
| 7 |
|
| 8 |
class Cachedusers_m extends Winter_MVC_Model { |
| 9 |
|
| 10 |
public $_table_name = 'wdk_users'; |
| 11 |
public $_order_by = 'idusers'; |
| 12 |
public $_primary_key = 'cacheduser_user_id'; |
| 13 |
public $_own_columns = array(); |
| 14 |
public $_timestamps = FALSE; |
| 15 |
protected $_primary_filter = 'intval'; |
| 16 |
public $form_admin = array(); |
| 17 |
public $fields_list = NULL; |
| 18 |
|
| 19 |
public function __construct(){ |
| 20 |
parent::__construct(); |
| 21 |
} |
| 22 |
|
| 23 |
/* [START] For dynamic data table */ |
| 24 |
|
| 25 |
public function get_available_fields() |
| 26 |
{ |
| 27 |
$fields = $this->db->list_fields($this->_table_name); |
| 28 |
|
| 29 |
return $fields; |
| 30 |
} |
| 31 |
|
| 32 |
public function total($where = array()) |
| 33 |
{ |
| 34 |
$this->db->select('COUNT(*) as total_count'); |
| 35 |
$this->db->from($this->_table_name); |
| 36 |
$this->db->where($where); |
| 37 |
$this->db->order_by($this->_order_by); |
| 38 |
|
| 39 |
$query = $this->db->get(); |
| 40 |
|
| 41 |
$res = $this->db->results(); |
| 42 |
|
| 43 |
if(isset($res[0]->total_count)) |
| 44 |
return $res[0]->total_count; |
| 45 |
|
| 46 |
return 0; |
| 47 |
} |
| 48 |
|
| 49 |
public function get_pagination($limit, $offset, $where = array(), $order_by = NULL) |
| 50 |
{ |
| 51 |
$this->db->select('*'); |
| 52 |
$this->db->from($this->_table_name); |
| 53 |
|
| 54 |
$this->db->where($where); |
| 55 |
$this->db->limit($limit); |
| 56 |
$this->db->offset($offset); |
| 57 |
|
| 58 |
if(!empty($order_by)){ |
| 59 |
$this->db->order_by($order_by); |
| 60 |
} else { |
| 61 |
$this->db->order_by($this->_order_by); |
| 62 |
} |
| 63 |
|
| 64 |
$query = $this->db->get(); |
| 65 |
|
| 66 |
if ($this->db->num_rows() > 0) |
| 67 |
return $this->db->results(); |
| 68 |
|
| 69 |
return array(); |
| 70 |
} |
| 71 |
|
| 72 |
public function check_deletable($id, $user_id=NULL) |
| 73 |
{ |
| 74 |
return true; |
| 75 |
} |
| 76 |
|
| 77 |
} |
| 78 |
?> |