Файл: upload-2031-rs1/catalog/controller/module/store.php
Строк: 37
<?php
class ControllerModuleStore extends Controller {
public function index() {
$status = true;
if ($this->config->get('store_admin')) {
$this->load->library('user');
$this->user = new User($this->registry);
$status = $this->user->isLogged();
}
if ($status) {
$this->load->language('module/store');
$data['heading_title'] = $this->language->get('heading_title');
$data['text_store'] = $this->language->get('text_store');
$data['store_id'] = $this->config->get('config_store_id');
$data['stores'] = array();
$data['stores'][] = array(
'store_id' => 0,
'name' => $this->language->get('text_default'),
'url' => HTTP_SERVER . 'index.php?route=common/home&session_id=' . $this->session->getId()
);
$this->load->model('setting/store');
$results = $this->model_setting_store->getStores();
foreach ($results as $result) {
$data['stores'][] = array(
'store_id' => $result['store_id'],
'name' => $result['name'],
'url' => $result['url'] . 'index.php?route=common/home&session_id=' . $this->session->getId()
);
}
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/store.tpl')) {
return $this->load->view($this->config->get('config_template') . '/template/module/store.tpl', $data);
} else {
return $this->load->view('default/template/module/store.tpl', $data);
}
}
}
}