90 lines
3.1 KiB
PHP
90 lines
3.1 KiB
PHP
<?php
|
|
class ControllerCommonFooter extends Controller {
|
|
public function index() {
|
|
$this->load->language('common/footer');
|
|
|
|
$this->load->model('catalog/information');
|
|
|
|
$data['informations'] = array();
|
|
|
|
foreach ($this->model_catalog_information->getInformations() as $result) {
|
|
if ($result['bottom']) {
|
|
$data['informations'][] = array(
|
|
'title' => $result['title'],
|
|
'href' => $this->url->link('information/information', 'information_id=' . $result['information_id'])
|
|
);
|
|
}
|
|
}
|
|
|
|
$data['contact'] = $this->url->link('information/contact', '', true);
|
|
$data['return'] = $this->url->link('account/return/add', '', true);
|
|
$data['sitemap'] = $this->url->link('information/sitemap');
|
|
$data['tracking'] = $this->url->link('information/tracking');
|
|
$data['manufacturer'] = $this->url->link('product/manufacturer');
|
|
$data['voucher'] = $this->url->link('account/voucher', '', true);
|
|
$data['affiliate'] = $this->url->link('affiliate/login', '', true);
|
|
$data['special'] = $this->url->link('product/special');
|
|
$data['account'] = $this->url->link('account/account', '', true);
|
|
$data['order'] = $this->url->link('account/order', '', true);
|
|
$data['wishlist'] = $this->url->link('account/wishlist', '', true);
|
|
$data['newsletter'] = $this->url->link('account/newsletter', '', true);
|
|
$data['text_contacts'] = $this->language->get('text_contacts');
|
|
|
|
$data['powered'] = sprintf($this->language->get('text_powered'), $this->config->get('config_name'), date('Y', time()));
|
|
|
|
// Whos Online
|
|
if ($this->config->get('config_customer_online')) {
|
|
$this->load->model('tool/online');
|
|
|
|
if (isset($this->request->server['REMOTE_ADDR'])) {
|
|
$ip = $this->request->server['REMOTE_ADDR'];
|
|
} else {
|
|
$ip = '';
|
|
}
|
|
|
|
if (isset($this->request->server['HTTP_HOST']) && isset($this->request->server['REQUEST_URI'])) {
|
|
$url = ($this->request->server['HTTPS'] ? 'https://' : 'http://') . $this->request->server['HTTP_HOST'] . $this->request->server['REQUEST_URI'];
|
|
} else {
|
|
$url = '';
|
|
}
|
|
|
|
if (isset($this->request->server['HTTP_REFERER'])) {
|
|
$referer = $this->request->server['HTTP_REFERER'];
|
|
} else {
|
|
$referer = '';
|
|
}
|
|
|
|
$this->model_tool_online->addOnline($ip, $this->customer->getId(), $url, $referer);
|
|
}
|
|
|
|
foreach(['name','email','telephone','address','open', 'comment'] as $item){
|
|
$data['config_' . $item] = $this->config->get('config_' . $item);
|
|
}
|
|
|
|
$data['logo_text'] = $this->config->get('config_logo_text');
|
|
|
|
if ($this->request->server['HTTPS']) {
|
|
$server = $this->config->get('config_ssl');
|
|
} else {
|
|
$server = $this->config->get('config_url');
|
|
}
|
|
|
|
if (is_file(DIR_IMAGE . $this->config->get('config_logo'))) {
|
|
$data['logo'] = $server . 'image/' . $this->config->get('config_logo');
|
|
} else {
|
|
$data['logo'] = '';
|
|
}
|
|
|
|
$this->load->model('localisation/zone');
|
|
|
|
foreach ($this->model_localisation_zone->getContacts() as $field => $value) {
|
|
$data['config_' . $field] = $value;
|
|
}
|
|
|
|
$data['scripts'] = $this->document->getScripts('footer');
|
|
$data['styles'] = $this->document->getStyles('footer');
|
|
|
|
return $this->load->view('common/footer', $data);
|
|
}
|
|
}
|