'basis/student:rw')); // Load model StudentModel $this->load->model('crm/student_model', 'StudentModel'); } /** * @return void */ public function getStudent() { $studentID = $this->get('student_id'); if (isset($studentID)) { $result = $this->StudentModel->load($studentID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postStudent() { if ($this->_validate($this->post())) { if (isset($this->post()['student_id'])) { $result = $this->StudentModel->update($this->post()['student_id'], $this->post()); } else { $result = $this->StudentModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($student = NULL) { return true; } }