[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: IncomeItem.php
<?php /* ########################################################### # PRODUCT NAME: Off POS ########################################################### # AUTHER: Door Soft ########################################################### # EMAIL: info@doorsoft.co ########################################################### # COPYRIGHTS: RESERVED BY Door Soft ########################################################### # WEBSITE: https://www.doorsoft.co ########################################################### # This is IncomeItem Controller ########################################################### */ defined('BASEPATH') OR exit('No direct script access allowed'); class IncomeItem extends Cl_Controller { /** * load constructor * @access public * @return void */ public function __construct() { parent::__construct(); $this->load->model('Authentication_model'); $this->load->model('Common_model'); $this->load->library('form_validation'); $this->Common_model->setDefaultTimezone(); if (!$this->session->has_userdata('user_id')) { redirect('Authentication/index'); } //start check access function $segment_2 = $this->uri->segment(2); $segment_3 = $this->uri->segment(3); $controller = "187"; $function = ""; if($segment_2=="addEditIncomeItem" && $segment_3 == ""){ $function = "add"; }elseif($segment_2=="addEditIncomeItem" && $segment_3){ $function = "edit"; }elseif($segment_2=="deleteIncomeItem"){ $function = "delete"; }elseif($segment_2=="incomeItems"){ $function = "list"; }else{ $this->session->set_flashdata('exception_1',lang('no_access')); redirect('Authentication/userProfile'); } if(!checkAccess($controller,$function)){ $this->session->set_flashdata('exception_1',lang('no_access')); redirect('Authentication/userProfile'); } } /** * addEditIncomeItem * @access public * @param int * @return void */ public function addEditIncomeItem($encrypted_id = "") { $id = $this->custom->encrypt_decrypt($encrypted_id, 'decrypt'); if (htmlspecialcharscustom($this->input->post('submit'))) { $add_more = $this->input->post($this->security->xss_clean('add_more')); $this->form_validation->set_rules('name', lang('name'), 'required|max_length[50]'); $this->form_validation->set_rules('description', lang('description'), 'max_length[255]'); if ($this->form_validation->run() == TRUE) { $fmc_info = array(); $fmc_info['name'] = htmlspecialcharscustom($this->input->post($this->security->xss_clean('name'))); $fmc_info['description'] = htmlspecialcharscustom($this->input->post($this->security->xss_clean('description'))); $fmc_info['user_id'] = $this->session->userdata('user_id'); $fmc_info['company_id'] = $this->session->userdata('company_id'); if ($id == "") { $fmc_info['added_date'] = date('Y-m-d H:i:s'); $this->Common_model->insertInformation($fmc_info, "tbl_income_items"); $this->session->set_flashdata('exception', lang('insertion_success')); } else { $this->Common_model->updateInformation($fmc_info, $id, "tbl_income_items"); $this->session->set_flashdata('exception', lang('update_success')); } if($add_more == 'add_more'){ redirect('IncomeItem/addEditIncomeItem'); }else{ redirect('IncomeItem/incomeItems'); } } else { if ($id == "") { $data = array(); $data['main_content'] = $this->load->view('master/incomeItem/addIncomeItem', $data, TRUE); $this->load->view('userHome', $data); } else { $data = array(); $data['encrypted_id'] = $encrypted_id; $data['income_item_information'] = $this->Common_model->getDataById($id, "tbl_income_items"); $data['main_content'] = $this->load->view('master/incomeItem/editIncomeItem', $data, TRUE); $this->load->view('userHome', $data); } } } else { if ($id == "") { $data = array(); $data['main_content'] = $this->load->view('master/incomeItem/addIncomeItem', $data, TRUE); $this->load->view('userHome', $data); } else { $data = array(); $data['encrypted_id'] = $encrypted_id; $data['income_item_information'] = $this->Common_model->getDataById($id, "tbl_income_items"); $data['main_content'] = $this->load->view('master/incomeItem/editIncomeItem', $data, TRUE); $this->load->view('userHome', $data); } } } /** * deleteIncomeItem * @access public * @param int * @return void */ public function deleteIncomeItem($id) { $id = $this->custom->encrypt_decrypt($id, 'decrypt'); $this->Common_model->deleteStatusChange($id, "tbl_income_items"); $this->session->set_flashdata('exception',lang('delete_success')); redirect('IncomeItem/incomeItems'); } /** * incomeItems * @access public * @param no * @return void */ public function incomeItems() { $company_id = $this->session->userdata('company_id'); $data = array(); $data['incomeItems'] = $this->Common_model->getAllByCompanyIdWithAddedBy($company_id, "tbl_income_items"); $data['main_content'] = $this->load->view('master/incomeItem/incomeItems', $data, TRUE); $this->load->view('userHome', $data); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.06 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002