Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
_
/
smart_school_src
/
application
/
controllers
/
admin
✏️
Editing: Itemstock.php
<?php if (!defined('BASEPATH')) { exit('No direct script access allowed'); } class Itemstock extends Admin_Controller { public function __construct() { parent::__construct(); $this->load->helper('form'); } public function index() { if (!$this->rbac->hasPrivilege('item_stock', 'can_view')) { access_denied(); } $this->session->set_userdata('top_menu', 'Inventory'); $this->session->set_userdata('sub_menu', 'Itemstock/index'); $data['title'] = 'Add Item'; $data['title_list'] = 'Recent Items'; $this->form_validation->set_rules('item_id', $this->lang->line('item'), 'trim|required|xss_clean'); $this->form_validation->set_rules('quantity', $this->lang->line('quantity'), 'trim|required|xss_clean'); $this->form_validation->set_rules('purchase_price', $this->lang->line('purchase') . " " . $this->lang->line('price'), 'trim|required|xss_clean'); $this->form_validation->set_rules('item_category_id', $this->lang->line('item_category'), 'trim|required|xss_clean'); $this->form_validation->set_rules('item_photo', $this->lang->line('file'), 'callback_handle_upload[item_photo]'); if ($this->form_validation->run() == false) { } else { $store_id = ($this->input->post('store_id')) ? $this->input->post('store_id') : null; $data = array( 'item_id' => $this->input->post('item_id'), 'symbol' => $this->input->post('symbol'), 'supplier_id' => $this->input->post('supplier_id'), 'store_id' => $store_id, 'quantity' => $this->input->post('symbol') . $this->input->post('quantity'), 'purchase_price' => $this->input->post('purchase_price'), 'date' => date('Y-m-d', $this->customlib->datetostrtotime($this->input->post('date'))), 'description' => $this->input->post('description'), ); $insert_id = $this->itemstock_model->add($data); if (isset($_FILES["item_photo"]) && !empty($_FILES['item_photo']['name'])) { $fileInfo = pathinfo($_FILES["item_photo"]["name"]); $img_name = $insert_id . '.' . $fileInfo['extension']; move_uploaded_file($_FILES["item_photo"]["tmp_name"], "./uploads/inventory_items/" . $img_name); $data_img = array('id' => $insert_id, 'attachment' => 'uploads/inventory_items/' . $img_name); $this->itemstock_model->add($data_img); } $this->session->set_flashdata('msg', '<div class="alert alert-success text-left">' . $this->lang->line('success_message') . '</div>'); redirect('admin/itemstock/index'); } $item_result = $this->itemstock_model->get(); $data['itemlist'] = $item_result; $itemcategory = $this->itemcategory_model->get(); $data['itemcatlist'] = $itemcategory; $itemsupplier = $this->itemsupplier_model->get(); $data['itemsupplier'] = $itemsupplier; $itemstore = $this->itemstore_model->get(); $data['itemstore'] = $itemstore; $this->load->view('layout/header', $data); $this->load->view('admin/itemstock/itemList', $data); $this->load->view('layout/footer', $data); } public function download($file) { $this->load->helper('download'); $filepath = "./uploads/inventory_items/" . $this->uri->segment(6); $data = file_get_contents($filepath); $name = $this->uri->segment(6); force_download($name, $data); } public function getItemByCategory() { $item_category_id = $this->input->get('item_category_id'); $data = $this->item_model->getItemByCategory($item_category_id); echo json_encode($data); } public function getItemunit() { $id = $this->input->get('id'); $data = $this->item_model->getItemunit($id); echo json_encode($data); } public function delete($id) { if (!$this->rbac->hasPrivilege('item_stock', 'can_delete')) { access_denied(); } $data['title'] = 'Fees Master List'; $this->itemstock_model->remove($id); redirect('admin/itemstock/index'); } public function handle_upload($str, $var) { $image_validate = $this->config->item('file_validate'); $result = $this->filetype_model->get(); if (isset($_FILES[$var]) && !empty($_FILES[$var]['name'])) { $file_type = $_FILES[$var]['type']; $file_size = $_FILES[$var]["size"]; $file_name = $_FILES[$var]["name"]; $allowed_extension = array_map('trim', array_map('strtolower', explode(',', $result->file_extension))); $allowed_mime_type = array_map('trim', array_map('strtolower', explode(',', $result->file_mime))); $ext = strtolower(pathinfo($file_name, PATHINFO_EXTENSION)); if ($files = filesize($_FILES[$var]['tmp_name'])) { if (!in_array($file_type, $allowed_mime_type)) { $this->form_validation->set_message('handle_upload', 'File Type Not Allowed'); return false; } if (!in_array($ext, $allowed_extension) || !in_array($file_type, $allowed_mime_type)) { $this->form_validation->set_message('handle_upload', 'Extension Not Allowed'); return false; } if ($file_size > $result->file_size) { $this->form_validation->set_message('handle_upload', $this->lang->line('file_size_shoud_be_less_than') . number_format($image_validate['upload_size'] / 1048576, 2) . " MB"); return false; } } else { $this->form_validation->set_message('handle_upload', "File Type / Extension Error Uploading "); return false; } return true; } return true; } public function edit($id) { if (!$this->rbac->hasPrivilege('item_stock', 'can_edit')) { access_denied(); } $data['title'] = 'Edit Fees Master'; $data['id'] = $id; $item = $this->itemstock_model->get($id); $data['item'] = $item; $data['title_list'] = 'Fees Master List'; $item_result = $this->itemstock_model->get(); $data['itemlist'] = $item_result; $itemcategory = $this->itemcategory_model->get(); $data['itemcatlist'] = $itemcategory; $itemsupplier = $this->itemsupplier_model->get(); $data['itemsupplier'] = $itemsupplier; $itemstore = $this->itemstore_model->get(); $data['itemstore'] = $itemstore; $this->form_validation->set_rules('item_id', $this->lang->line('item'), 'trim|required|xss_clean'); $this->form_validation->set_rules('item_category_id', $this->lang->line('item_category'), 'trim|required|xss_clean'); $this->form_validation->set_rules('purchase_price', $this->lang->line('price'), 'trim|required|xss_clean'); $this->form_validation->set_rules('quantity', $this->lang->line('quantity'), 'trim|required|xss_clean'); if ($this->form_validation->run() == false) { $this->load->view('layout/header', $data); $this->load->view('admin/itemstock/itemEdit', $data); $this->load->view('layout/footer', $data); } else { $store_id = ($this->input->post('store_id')) ? $this->input->post('store_id') : null; $data = array( 'id' => $id, 'item_id' => $this->input->post('item_id'), 'symbol' => $this->input->post('symbol'), 'supplier_id' => $this->input->post('supplier_id'), 'store_id' => $store_id, 'quantity' => $this->input->post('symbol') . $this->input->post('quantity'), 'purchase_price' => $this->input->post('purchase_price'), 'date' => date('Y-m-d', $this->customlib->datetostrtotime($this->input->post('date'))), 'description' => $this->input->post('description'), ); $this->itemstock_model->add($data); if (isset($_FILES["item_photo"]) && !empty($_FILES['item_photo']['name'])) { $fileInfo = pathinfo($_FILES["item_photo"]["name"]); $img_name = $id . '.' . $fileInfo['extension']; move_uploaded_file($_FILES["item_photo"]["tmp_name"], "./uploads/inventory_items/" . $img_name); $data_img = array('id' => $id, 'attachment' => 'uploads/inventory_items/' . $img_name); $this->itemstock_model->add($data_img); } $this->session->set_flashdata('msg', '<div class="alert alert-success text-left">' . $this->lang->line('update_message') . '</div>'); redirect('admin/itemstock/index'); } } }
💾 Save Changes
❌ Cancel