load->helper('file'); $this->load->helper('url'); } function index() { if (!$this->rbac->hasPrivilege('store', 'can_view')) { access_denied(); } $this->session->set_userdata('top_menu', 'Inventory'); $this->session->set_userdata('sub_menu', 'itemstore/index'); $data['title'] = 'Item Store List'; $itemstore_result = $this->itemstore_model->get(); $data['itemstorelist'] = $itemstore_result; $this->load->view('layout/header', $data); $this->load->view('admin/itemstore/itemstoreList', $data); $this->load->view('layout/footer', $data); } function delete($id) { if (!$this->rbac->hasPrivilege('store', 'can_delete')) { access_denied(); } $data['title'] = 'Item Store List'; $this->itemstore_model->remove($id); redirect('admin/itemstore/index'); } function create() { if (!$this->rbac->hasPrivilege('store', 'can_add')) { access_denied(); } $data['title'] = 'Add Item store'; $itemstore_result = $this->itemstore_model->get(); $data['itemstorelist'] = $itemstore_result; $this->form_validation->set_rules('name', $this->lang->line('item_store_name'), 'trim|required|xss_clean'); if ($this->form_validation->run() == FALSE) { $this->load->view('layout/header', $data); $this->load->view('admin/itemstore/itemstoreList', $data); $this->load->view('layout/footer', $data); } else { $data = array( 'item_store' => $this->input->post('name'), 'code' => $this->input->post('code'), 'description' => $this->input->post('description'), ); $this->itemstore_model->add($data); $this->session->set_flashdata('msg', '