| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/mmobot/app/modules/category/models/ |
Upload File : |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class category_model extends MY_Model {
public $tb_users;
public $tb_categories;
public $tb_services;
public function __construct(){
$this->tb_categories = CATEGORIES;
parent::__construct();
}
function get_category_lists($total_rows = false, $status = "", $limit = "", $start = ""){
if ($limit != "" && $start >= 0) {
$this->db->limit($limit, $start);
}
$this->db->select('*');
$this->db->from($this->tb_categories);
$this->db->order_by('sort', 'ASC');
$query = $this->db->get();
if ($total_rows) {
$result = $query->num_rows();
return $result;
}else{
$result = $query->result();
return $result;
}
return false;
}
function get_category_lists_by_search($k = ""){
$k = trim(htmlspecialchars($k));
if (get_role("user")) {
$this->db->where("status", "1");
}
$this->db->select('*');
$this->db->from($this->tb_categories);
if ($k != "" && strlen($k) >= 2) {
$this->db->like("name", $k, 'both');
$this->db->or_like("desc", $k, 'both');
}
$this->db->order_by('sort', 'ASC');
$query = $this->db->get();
$result = $query->result();
return $result;
}
}