'basis/zeitsperre:rw')); // Load model ZeitsperreModel $this->load->model('ressource/zeitsperre_model', 'ZeitsperreModel'); } /** * @return void */ public function getZeitsperre() { $zeitsperreID = $this->get('zeitsperre_id'); if (isset($zeitsperreID)) { $result = $this->ZeitsperreModel->load($zeitsperreID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postZeitsperre() { if ($this->_validate($this->post())) { if (isset($this->post()['zeitsperre_id'])) { $result = $this->ZeitsperreModel->update($this->post()['zeitsperre_id'], $this->post()); } else { $result = $this->ZeitsperreModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($zeitsperre = NULL) { return true; } }