'basis/bestellung:rw')); // Load model BestellungModel $this->load->model('accounting/bestellung_model', 'BestellungModel'); } /** * @return void */ public function getBestellung() { $bestellungID = $this->get('bestellung_id'); if (isset($bestellungID)) { $result = $this->BestellungModel->load($bestellungID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postBestellung() { if ($this->_validate($this->post())) { if (isset($this->post()['bestellung_id'])) { $result = $this->BestellungModel->update($this->post()['bestellung_id'], $this->post()); } else { $result = $this->BestellungModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($bestellung = NULL) { return true; } }