blob: 40a0dd43a76b267324534b70363b6bd85e86ee32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
class ControllerExtensionModuleStore extends Controller {
public function index() {
$status = true;
if ($this->config->get('module_store_admin')) {
$this->user = new Cart\User($this->registry);
$status = $this->user->isLogged();
}
if ($status) {
$this->load->language('extension/module/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()
);
}
return $this->load->view('extension/module/store', $data);
}
}
}
|