���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/dashboard/models/ |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Terminals extends CI_Model { public function __construct() { parent::__construct(); } //customer List public function terminal_list() { $this->db->select('*'); $this->db->from('terminal_payment'); $this->db->order_by('terminal_name','asc'); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //terminal Search Item public function terminal_search_item($terminal_id) { $this->db->select('*'); $this->db->from('terminal_payment'); $this->db->where('terminal_id',$terminal_id); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //Count customer public function terminal_entry($data) { $this->db->select('*'); $this->db->from('terminal_payment'); $this->db->where('terminal_name',$data['terminal_name']); $query = $this->db->get(); if ($query->num_rows() > 0) { return FALSE; }else{ $this->db->insert('terminal_payment',$data); return TRUE; } } //Retrieve customer Edit Data public function retrieve_terminal_editdata($terminal_id) { $this->db->select('*'); $this->db->from('terminal_payment'); $this->db->where('pay_terminal_id',$terminal_id); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //Update Terminals public function update_terminal($data,$terminal_id) { $this->db->where('pay_terminal_id',$terminal_id); $result = $this->db->update('terminal_payment',$data); if ($result) { return true; } return false; } // Delete terminal Item public function delete_terminal($terminal_id) { $this->db->where('pay_terminal_id',$terminal_id); $this->db->delete('terminal_payment'); return true; } }