load->helper('array'); $this->load->model('Orders_model'); } public function index() { } public function push($COLI_ID) { $orderinfo = $this->Orders_model->get_orderinfo_detail($COLI_ID); if(empty($orderinfo)) {return;} return $this->output->set_content_type('application/json')->set_output(json_encode($orderinfo)); } } /* End of file index.php */ /* Location: ./third_party/vendorPlanSync/controllers/index.php */