File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/models/ComplaintType_model.php
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class ComplaintType_model extends MY_Model
{
public function __construct()
{
parent::__construct();
}
public function add($table, $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->insert($table, $data);
$insert_id = $this->db->insert_id();
$message = INSERT_RECORD_CONSTANT . " On ". $table ." id " . $insert_id;
$action = "Insert";
$record_id = $insert_id;
$this->log($message, $record_id, $action);
//======================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 $insert_id;
}
}
public function get($table, $id = null)
{
$this->db->select()->from($table);
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_array();
}
}
public function update($table, $complaint_type_id, $data)
{
$this->db->where('id', $complaint_type_id);
$query = $this->db->update($table, $data);
if ($query) {
return true;
} else {
return false;
}
}
public function delete($table, $id)
{
$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('id', $id);
$this->db->delete($table);
$message = DELETE_RECORD_CONSTANT . " On " . $table . " id " . $id;
$action = "Delete";
$record_id = $id;
$this->log($message, $record_id, $action);
//======================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 $record_id;
}
}
}