| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op4103.dev.safetybis.com/catalog/controller/startup/ |
| Current File : /home/devsafetybis/op4103.dev.safetybis.com/catalog/controller/startup/setting.php |
<?php
namespace Opencart\Catalog\Controller\Startup;
/**
* Class Setting
*
* @package Opencart\Catalog\Controller\Startup
*/
class Setting extends \Opencart\System\Engine\Controller {
/**
* Index
*
* @return void
*/
public function index(): void {
$hostname = ($this->request->server['HTTPS'] ? 'https://' : 'http://') . str_replace('www.', '', $this->request->server['HTTP_HOST']) . rtrim(dirname($this->request->server['PHP_SELF']), '/.\\') . '/';
// Store
$this->load->model('setting/store');
$store_info = $this->model_setting_store->getStoreByHostname($hostname);
if (isset($this->request->get['store_id'])) {
$this->config->set('config_store_id', (int)$this->request->get['store_id']);
} elseif ($store_info) {
$this->config->set('config_store_id', $store_info['store_id']);
} else {
$this->config->set('config_store_id', 0);
}
if (!$store_info) {
// If catalog constant is defined
if (defined('HTTP_CATALOG')) {
$this->config->set('config_url', HTTP_CATALOG);
} else {
$this->config->set('config_url', HTTP_SERVER);
}
}
// Setting
$this->load->model('setting/setting');
$results = $this->model_setting_setting->getSettings((int)$this->config->get('config_store_id'));
foreach ($results as $result) {
if (!$result['serialized']) {
$this->config->set($result['key'], $result['value']);
} else {
$this->config->set($result['key'], json_decode($result['value'], true));
}
}
// Url
$this->registry->set('url', new \Opencart\System\Library\Url($this->config->get('config_url')));
// Set time zone
if ($this->config->get('config_timezone')) {
date_default_timezone_set($this->config->get('config_timezone'));
// Sync PHP and DB time zones.
$this->db->query("SET `time_zone` = '" . $this->db->escape(date('P')) . "'");
}
// Response output compression level
if ($this->config->get('config_compression')) {
$this->response->setCompression((int)$this->config->get('config_compression'));
}
}
}