ok
Direktori : /proc/thread-self/root/home2/selectio/www/bharath/application/models/ |
Current File : //proc/thread-self/root/home2/selectio/www/bharath/application/models/Smsconfig_model.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Smsconfig_model extends MY_Model { public function __construct() { parent::__construct(); } public function get($id = null) { $this->db->select()->from('sms_config'); if ($id != null) { $this->db->where('id', $id); } else { $this->db->order_by('id'); } $query = $this->db->get(); if ($id != null) { return $query->row_array(); } else { return $query->result(); } } public function changeStatus($type) { $data = array('is_active' => 'disabled'); $this->db->where('type !=', $type); $this->db->update('sms_config', $data); } public function add($data) { $this->db->trans_start(); # Starting Transaction $this->db->trans_strict(false); # See Note 01. If you wish can remove as well //=======================Code Start=========================== $this->db->where('type', $data['type']); $q = $this->db->get('sms_config'); if ($q->num_rows() > 0) { $this->db->where('type', $data['type']); $this->db->update('sms_config', $data); $message = UPDATE_RECORD_CONSTANT." On sms config id ".$data['type']; $action = "Update"; $record_id = $data['type']; $this->log($message, $record_id, $action); } else { $this->db->insert('sms_config', $data); $insert_id = $this->db->insert_id(); $message = INSERT_RECORD_CONSTANT." On sms config id ".$insert_id; $action = "Insert"; $record_id = $insert_id; $this->log($message, $record_id, $action); } if ($data['is_active'] == "enabled") { $this->changeStatus($data['type']); } //======================Code End============================== $this->db->trans_complete(); # Completing transaction /*Optional*/ if ($this->db->trans_status() === false) { # Something went wrong. $this->db->trans_rollback(); return false; } else { return true; } } public function getActiveSMS() { $this->db->select()->from('sms_config'); $this->db->where('is_active', 'enabled'); $query = $this->db->get(); return $query->row(); } }