HOME


sh-3ll 1.0
DIR:/proc/self/root/proc/thread-self/cwd/application/models/pages/
Upload File :
Current File : //proc/self/root/proc/thread-self/cwd/application/models/pages/MapModel.php
<?php
//error_reporting(0);
defined('BASEPATH') OR exit('No direct script access allowed');

class MapModel extends CI_Model{



	public function getMapData($company_id){
		$this->db->select('*');
		$this->db->where('company_id',$company_id);
		$query =$this->db->get('view_map_data');
        return $query->result_array();
	}




}