'basis/lehrfach:rw')); // Load model LehrfachModel $this->load->model('education/Lehrfach_model', 'LehrfachModel'); } /** * @return void */ public function getLehrfach() { $lehrfach_id = $this->get('lehrfach_id'); if (isset($lehrfach_id)) { $result = $this->LehrfachModel->load($lehrfach_id); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postLehrfach() { if ($this->_validate($this->post())) { if (isset($this->post()['lehrfach_id'])) { $result = $this->LehrfachModel->update($this->post()['lehrfach_id'], $this->post()); } else { $result = $this->LehrfachModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($lehrfach = NULL) { return true; } }