'basis/preoutgoing:rw')); // Load model PreoutgoingModel $this->load->model('crm/preoutgoing_model', 'PreoutgoingModel'); } /** * @return void */ public function getPreoutgoing() { $preoutgoingID = $this->get('preoutgoing_id'); if (isset($preoutgoingID)) { $result = $this->PreoutgoingModel->load($preoutgoingID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postPreoutgoing() { if ($this->_validate($this->post())) { if (isset($this->post()['preoutgoing_id'])) { $result = $this->PreoutgoingModel->update($this->post()['preoutgoing_id'], $this->post()); } else { $result = $this->PreoutgoingModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($preoutgoing = NULL) { return true; } }