'basis/ampel:rw')); // Load model AmpelModel $this->load->model('content/ampel_model', 'AmpelModel'); } /** * @return void */ public function getAmpel() { $ampelID = $this->get('ampel_id'); if (isset($ampelID)) { $result = $this->AmpelModel->load($ampelID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postAmpel() { if ($this->_validate($this->post())) { if (isset($this->post()['ampel_id'])) { $result = $this->AmpelModel->update($this->post()['ampel_id'], $this->post()); } else { $result = $this->AmpelModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($ampel = NULL) { return true; } }