'basis/bestelldetail:rw')); // Load model BestelldetailModel $this->load->model('accounting/bestelldetail_model', 'BestelldetailModel'); } /** * @return void */ public function getBestelldetail() { $bestelldetailID = $this->get('bestelldetail_id'); if (isset($bestelldetailID)) { $result = $this->BestelldetailModel->load($bestelldetailID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postBestelldetail() { if ($this->_validate($this->post())) { if (isset($this->post()['bestelldetail_id'])) { $result = $this->BestelldetailModel->update($this->post()['bestelldetail_id'], $this->post()); } else { $result = $this->BestelldetailModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($bestelldetail = NULL) { return true; } }