Server IP : 127.0.0.1 / Your IP : 18.190.253.56 [ Web Server : nginx/1.20.1 System : Linux dropship.kaosunisex.com 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64 User : kaosunisex ( 1000) PHP Version : 7.3.33 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/kaosunisex/dropship.kaosunisex.com/admin/controller/error/ |
Upload File : |
<?php class ControllerErrorPermission extends Controller { public function index() { $this->load->language('error/permission'); $this->document->setTitle($this->language->get('heading_title')); $data['breadcrumbs'] = array(); $data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'), 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true) ); $data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'), 'href' => $this->url->link($this->request->get['route'], 'user_token=' . $this->session->data['user_token'], true) ); $data['header'] = $this->load->controller('common/header'); $data['column_left'] = $this->load->controller('common/column_left'); $data['footer'] = $this->load->controller('common/footer'); $this->response->setOutput($this->load->view('error/permission', $data)); } }