���� 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 Web_footers extends CI_Model { public function __construct() { parent::__construct(); } //web_footer List public function web_footer_list() { $this->db->select('*'); $this->db->from('web_footer'); $this->db->order_by('position','asc'); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //web_footer Search Item public function web_footer_search_item($footer_section_id) { $this->db->select('*'); $this->db->from('web_footer'); $this->db->where('footer_section_id',$footer_section_id); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //Count customer public function web_footer_entry($data) { $this->db->select('*'); $this->db->from('web_footer'); $this->db->where('status',1); $this->db->where('position',$data['position']); $query = $this->db->get(); if ($query->num_rows() > 0) { return FALSE; }else{ $this->db->insert('web_footer',$data); return TRUE; } } //Retrieve customer Edit Data public function retrieve_web_footer_editdata($footer_section_id) { $this->db->select('*'); $this->db->from('web_footer'); $this->db->where('footer_section_id',$footer_section_id); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //Update Web_footers public function update_web_footer($data,$footer_section_id) { $this->db->select('*'); $this->db->from('web_footer'); $this->db->where('position',$data['position']); $query = $this->db->get(); if ($query->num_rows() > 0) { $this->db->set('headlines',$data['headlines']); $this->db->set('details',$data['details']); $this->db->where('footer_section_id',$footer_section_id); $result = $this->db->update('web_footer'); return true; }else{ $this->db->where('footer_section_id',$footer_section_id); $result = $this->db->update('web_footer',$data); return true; } } // Delete web_footer Item public function delete_web_footer($footer_section_id) { $this->db->where('footer_section_id',$footer_section_id); $this->db->delete('web_footer'); return true; } }