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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
<?php
class ControllerCommonDashboard extends Controller {
public function index() {
$this->load->language('common/dashboard');
$this->document->setTitle($this->language->get('heading_title'));
$data['user_token'] = $this->session->data['user_token'];
$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('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
);
// Check install directory exists
if (is_dir(DIR_APPLICATION . 'install')) {
$data['error_install'] = $this->language->get('error_install');
} else {
$data['error_install'] = '';
}
// Dashboard Extensions
$dashboards = array();
$this->load->model('setting/extension');
// Get a list of installed modules
$extensions = $this->model_setting_extension->getInstalled('dashboard');
// Add all the modules which have multiple settings for each module
foreach ($extensions as $code) {
if ($this->config->get('dashboard_' . $code . '_status') && $this->user->hasPermission('access', 'extension/dashboard/' . $code)) {
$output = $this->load->controller('extension/dashboard/' . $code . '/dashboard');
if ($output) {
$dashboards[] = array(
'code' => $code,
'width' => $this->config->get('dashboard_' . $code . '_width'),
'sort_order' => $this->config->get('dashboard_' . $code . '_sort_order'),
'output' => $output
);
}
}
}
$sort_order = array();
foreach ($dashboards as $key => $value) {
$sort_order[$key] = $value['sort_order'];
}
array_multisort($sort_order, SORT_ASC, $dashboards);
// Split the array so the columns width is not more than 12 on each row.
$width = 0;
$column = array();
$data['rows'] = array();
foreach ($dashboards as $dashboard) {
$column[] = $dashboard;
$width = ($width + $dashboard['width']);
if ($width >= 12) {
$data['rows'][] = $column;
$width = 0;
$column = array();
}
}
if (DIR_STORAGE == DIR_SYSTEM . 'storage/') {
$data['security'] = $this->load->controller('common/security');
} else {
$data['security'] = '';
}
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
// Run currency update
if ($this->config->get('config_currency_auto')) {
$this->load->model('localisation/currency');
$this->model_localisation_currency->refresh();
}
$this->response->setOutput($this->load->view('common/dashboard', $data));
}
}
|