load->model('content/infoscreen_model', 'InfoscreenModel'); } /** * @return void */ public function getInfoscreen() { $infoscreenID = $this->get('infoscreen_id'); if (isset($infoscreenID)) { $result = $this->InfoscreenModel->load($infoscreenID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postInfoscreen() { if ($this->_validate($this->post())) { if (isset($this->post()['infoscreen_id'])) { $result = $this->InfoscreenModel->update($this->post()['infoscreen_id'], $this->post()); } else { $result = $this->InfoscreenModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($infoscreen = NULL) { return true; } }