load->model('testtool/frage_model', 'FrageModel'); } /** * @return void */ public function getFrage() { $frageID = $this->get('frage_id'); if (isset($frageID)) { $result = $this->FrageModel->load($frageID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postFrage() { if ($this->_validate($this->post())) { if (isset($this->post()['frage_id'])) { $result = $this->FrageModel->update($this->post()['frage_id'], $this->post()); } else { $result = $this->FrageModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($frage = NULL) { return true; } }