'basis/news:rw')); // Load model NewsModel $this->load->model('content/news_model', 'NewsModel'); } /** * @return void */ public function getNews() { $newsID = $this->get('news_id'); if (isset($newsID)) { $result = $this->NewsModel->load($newsID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postNews() { if ($this->_validate($this->post())) { if (isset($this->post()['news_id'])) { $result = $this->NewsModel->update($this->post()['news_id'], $this->post()); } else { $result = $this->NewsModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($news = NULL) { return true; } }