'basis/lehreinheit:rw')); // Load model LehreinheitModel $this->load->model('education/Lehreinheit_model', 'LehreinheitModel'); } /** * @return void */ public function getLehreinheit() { $lehreinheit_id = $this->get('lehreinheit_id'); if (isset($lehreinheit_id)) { $result = $this->LehreinheitModel->load($lehreinheit_id); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postLehreinheit() { if ($this->_validate($this->post())) { if (isset($this->post()['lehreinheit_id'])) { $result = $this->LehreinheitModel->update($this->post()['lehreinheit_id'], $this->post()); } else { $result = $this->LehreinheitModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($lehreinheit = NULL) { return true; } }