'basis/pruefungstermin:rw')); // Load model PruefungsterminModel $this->load->model('education/Pruefungstermin_model', 'PruefungsterminModel'); } /** * @return void */ public function getPruefungstermin() { $pruefungstermin_id = $this->get('pruefungstermin_id'); if (isset($pruefungstermin_id)) { $result = $this->PruefungsterminModel->load($pruefungstermin_id); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postPruefungstermin() { if ($this->_validate($this->post())) { if (isset($this->post()['pruefungstermin_id'])) { $result = $this->PruefungsterminModel->update($this->post()['pruefungstermin_id'], $this->post()); } else { $result = $this->PruefungsterminModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($pruefungstermin = NULL) { return true; } }