ok

Mini Shell

Direktori : /home2/selectio/public_html/bharath/application/models/
Upload File :
Current File : /home2/selectio/public_html/bharath/application/models/Feereminder_model.php

<?php

if (!defined('BASEPATH')) {
    exit('No direct script access allowed');
}

class Feereminder_model extends CI_Model
{

    public function __construct()
    {
        parent::__construct();
    }

    public function get($id = null,$active=null)
    {
        $this->db->select()->from('fees_reminder');
        if($active != null){
            $this->db->where('fees_reminder.is_active', $active);
        }
        if ($id != null) {
            $this->db->where('fees_reminder.id', $id);
        } else {
            $this->db->order_by('fees_reminder.id');
        }
        $query = $this->db->get();
        if ($id != null) {
            return $query->row();
        } else {
            return $query->result();
        }
    }

    public function add($data)
    {
        $this->db->select()->from('fees_reminder');
        $this->db->where('fees_reminder.type', $data['type']);
        $q = $this->db->get();
        if ($q->num_rows() > 0) {
            $result = $q->row();

            $this->db->where('id', $result->id);
            $this->db->update('fees_reminder', $data);
        } else {
            $this->db->insert('fees_reminder', $data);
            return $this->db->insert_id();
        }
    }

      public function update($data)
    {
        

            $this->db->where('id', $data['id']);
            $this->db->update('fees_reminder', $data);
      
    }

    public function updatebatch($update_array)
    {

        $this->db->trans_start(); # Starting Transaction
        $this->db->trans_strict(false); # See Note 01. If you wish can remove as well

        if (isset($update_array) && !empty($update_array)) {

            $this->db->update_batch('fees_reminder', $update_array, 'id');
        }

        $this->db->trans_complete(); # Completing transaction

        if ($this->db->trans_status() === false) {
            $this->db->trans_rollback();
            return false;
        } else {
            $this->db->trans_commit();
            return true;
        }

    }

}

Zerion Mini Shell 1.0