uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
eshop.codeskitter.site
/
application
/
models
/
Custom_sms_model.php
/
/
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Custom_sms_model extends CI_Model { public function add_custom_sms($data) { $data = escape_array($data); $custom_sms_data = [ 'title' => $data['title'], 'message' => $data['message'], 'type' => $data['type'] ]; if (isset($data['edit_custom_sms']) && !empty($data['edit_custom_sms'])) { $this->db->set($custom_sms_data)->where('id', $data['edit_custom_sms'])->update('custom_sms'); } else { $this->db->insert('custom_sms', $custom_sms_data); } } public function get_custom_sms_data($offset = 0, $limit = 10, $sort = 'id', $order = 'ASC') { $multipleWhere = ''; if (isset($_GET['offset'])) $offset = $_GET['offset']; if (isset($_GET['limit'])) $limit = $_GET['limit']; if (isset($_GET['sort'])) if ($_GET['sort'] == 'id') { $sort = "id"; } else { $sort = $_GET['sort']; } if (isset($_GET['order'])) $order = $_GET['order']; if (isset($_GET['search']) and $_GET['search'] != '') { $search = $_GET['search']; $multipleWhere = ['id' => $search, 'title' => $search, 'message' => $search]; } $count_res = $this->db->select(' COUNT(id) as `total` '); if (isset($multipleWhere) && !empty($multipleWhere)) { $count_res->or_like($multipleWhere); } if (isset($where) && !empty($where)) { $count_res->where($where); } $city_count = $count_res->get('custom_sms')->result_array(); foreach ($city_count as $row) { $total = $row['total']; } $search_res = $this->db->select(' * '); if (isset($multipleWhere) && !empty($multipleWhere)) { $search_res->or_like($multipleWhere); } if (isset($where) && !empty($where)) { $search_res->where($where); } $city_search_res = $search_res->order_by($sort, $order)->limit($limit, $offset)->get('custom_sms')->result_array(); $bulkData = array(); $bulkData['total'] = $total; $rows = array(); $tempRow = array(); foreach ($city_search_res as $row) { $row = output_escaping($row); $operate = '<button type="button" class="btn btn-xs btn-primary edit_sms_modal" data-toggle="modal" data-id="' . $row['id'] . '" data-target="#sms-gateway-modal" data-url="admin/sms-gateway-settings" title="View SMS"><i class="fa fa-pen"></i></button>'; $tempRow['id'] = $row['id']; $tempRow['title'] = $row['title']; $tempRow['message'] = $row['message']; $tempRow['type'] = ucwords(str_replace('_', " ", $row['type'])); $tempRow['operate'] = $operate; $rows[] = $tempRow; } $bulkData['rows'] = $rows; print_r(json_encode($bulkData)); } }
/home/users/unlimited/www/eshop.codeskitter.site/application/models/Custom_sms_model.php