Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/banking.ncriptech.com/application/models/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php class Setting_model extends CI_Model { public function __construct() { parent::__construct(); } //----------------------------------------------------- public function update_general_setting($data){ $this->db->where('id', 1); $this->db->update('ci_general_settings', $data); return true; } //----------------------------------------------------- public function get_general_settings(){ $this->db->where('id', 1); $query = $this->db->get('ci_general_settings'); return $query->row_array(); } public function get_all_languages() { $this->db->where('status',1); return $this->db->get('ci_language')->result_array(); } /*-------------------------- Email Template Settings --------------------------*/ function get_email_templates() { return $this->db->get('ci_email_templates')->result_array(); } function update_email_template($data,$id) { $this->db->where('id', $id); $this->db->update('ci_email_templates', $data); return true; } function get_email_template_content_by_id($id) { return $this->db->get_where('ci_email_templates',array('id' => $id))->row_array(); } function get_email_template_variables_by_id($id) { return $this->db->get_where('ci_email_template_variables',array('template_id' => $id))->result_array(); } } ?>