ok
Direktori : /home2/selectio/www/gangabuvana/admin/cms/application/models/admin/ |
Current File : //home2/selectio/www/gangabuvana/admin/cms/application/models/admin/Model_portfolio_category.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Model_portfolio_category extends CI_Model { function show() { $sql = "SELECT * FROM tbl_portfolio_category t1 JOIN tbl_lang t2 ON t1.lang_id = t2.lang_id ORDER BY t1.category_id ASC"; $query = $this->db->query($sql); return $query->result_array(); } function show_portfolio_by_id($id) { $sql = "SELECT * FROM tbl_portfolio WHERE id=?"; $query = $this->db->query($sql,$id); return $query->result_array(); } function show_portfolio_photo_by_portfolio_id($id) { $sql = "SELECT * FROM tbl_portfolio_photo WHERE portfolio_id=?"; $query = $this->db->query($sql,$id); return $query->result_array(); } function add($data) { $this->db->insert('tbl_portfolio_category',$data); return $this->db->insert_id(); } function update($id,$data) { $this->db->where('category_id',$id); $this->db->update('tbl_portfolio_category',$data); } function delete($id) { $this->db->where('category_id',$id); $this->db->delete('tbl_portfolio_category'); } function delete1($id) { $this->db->where('id',$id); $this->db->delete('tbl_portfolio'); } function delete2($id) { $this->db->where('portfolio_id',$id); $this->db->delete('tbl_portfolio_photo'); } function getData($id) { $sql = 'SELECT * FROM tbl_portfolio_category WHERE category_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } function getData1($id) { $sql = 'SELECT * FROM tbl_portfolio WHERE category_id=?'; $query = $this->db->query($sql,array($id)); return $query->result_array(); } function portfolio_category_check($id) { $sql = 'SELECT * FROM tbl_portfolio_category WHERE category_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } function duplicate_check($var1,$var2) { $sql = 'SELECT * FROM tbl_portfolio_category WHERE category_name=? and category_name!=?'; $query = $this->db->query($sql,array($var1,$var2)); return $query->num_rows(); } }