PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/youronlinestore.kerihosting.com/catalog/controller/common/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/youronlinestore.kerihosting.com/catalog/controller/common/maintenance.php |
<?php class ControllerCommonMaintenance extends Controller { public function index() { if ($this->config->get('config_maintenance')) { $route = ''; if (isset($this->request->get['route'])) { $part = explode('/', $this->request->get['route']); if (isset($part[0])) { $route .= $part[0]; } } // Show site if logged in as admin $this->load->library('user'); $this->user = new User($this->registry); if (($route != 'payment') && !$this->user->isLogged()) { return $this->forward('common/maintenance/info'); } } } public function info() { $this->language->load('common/maintenance'); $this->document->setTitle($this->language->get('heading_title')); $this->data['heading_title'] = $this->language->get('heading_title'); $this->document->breadcrumbs = array(); $this->document->breadcrumbs[] = array( 'text' => $this->language->get('text_maintenance'), 'href' => $this->url->link('common/maintenance'), 'separator' => false ); $this->data['message'] = $this->language->get('text_message'); if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/maintenance.tpl')) { $this->template = $this->config->get('config_template') . '/template/common/maintenance.tpl'; } else { $this->template = 'default/template/common/maintenance.tpl'; } $this->children = array( 'common/footer', 'common/header' ); $this->response->setOutput($this->render()); } } ?>