'dashboard/admin:r', 'create' => 'dashboard/admin:rw', 'update' => 'dashboard/admin:rw', 'delete' => 'dashboard/admin:rw' ) ); $this->load->library('dashboard/DashboardLib', null, 'DashboardLib'); $this->load->model('dashboard/Dashboard_model', 'DashboardModel'); } public function index() { $result = $this->DashboardModel->load(); if (isError($result)) { http_response_code(404); $this->terminateWithJsonError([ 'error' => getError($result) ]); } return $this->outputJsonSuccess(getData($result) ?: []); } public function create() { $input = $this->getPostJSON(); $result = $this->DashboardModel->insert($input); if (isError($result)) { http_response_code(404); $this->terminateWithJsonError([ 'error' => getError($result) ]); } return $this->outputJsonSuccess(getData($result) ?: []); } public function update() { $input = $this->getPostJSON(); $result = $this->DashboardModel->update($input->dashboard_id, $input); if (isError($result)) { http_response_code(404); $this->terminateWithJsonError([ 'error' => getError($result) ]); } return $this->outputJsonSuccess(getData($result) ?: []); } public function delete() { $input = $this->getPostJSON(); $result = $this->DashboardModel->delete($input->dashboard_id); if (isError($result)) { http_response_code(404); $this->terminateWithJsonError([ 'error' => getError($result) ]); } return $this->outputJsonSuccess(getData($result) ?: []); } }