'basis/cronjob:rw')); // Load model CronjobModel $this->load->model('system/cronjob_model', 'CronjobModel'); } /** * @return void */ public function getCronjob() { $cronjobID = $this->get('cronjob_id'); if (isset($cronjobID)) { $result = $this->CronjobModel->load($cronjobID); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } /** * @return void */ public function postCronjob() { if ($this->_validate($this->post())) { if (isset($this->post()['cronjob_id'])) { $result = $this->CronjobModel->update($this->post()['cronjob_id'], $this->post()); } else { $result = $this->CronjobModel->insert($this->post()); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } private function _validate($cronjob = NULL) { return true; } }