'basis/freebusy:rw')); // Load model FreebusyModel $this->load->model('person/freebusy_model', 'FreebusyModel'); } /** * @return void */ public function getFreebusy() { $freebusyID = $this->get('freebusy_id'); if (isset($freebusyID)) { $result = $this->FreebusyModel->load($freebusyID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postFreebusy() { if ($this->_validate($this->post())) { if (isset($this->post()['freebusy_id'])) { $result = $this->FreebusyModel->update($this->post()['freebusy_id'], $this->post()); } else { $result = $this->FreebusyModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($freebusy = NULL) { return true; } }