Вход Регистрация
Файл: upload-2031-rs1/catalog/controller/account/logout.php
Строк: 111
<?php
class ControllerAccountLogout extends Controller {
    public function 
index() {
        if (
$this->customer->isLogged()) {
            
$this->event->trigger('pre.customer.logout');

            
$this->customer->logout();
            
$this->cart->clear();

            unset(
$this->session->data['wishlist']);
            unset(
$this->session->data['shipping_address']);
            unset(
$this->session->data['shipping_method']);
            unset(
$this->session->data['shipping_methods']);
            unset(
$this->session->data['payment_address']);
            unset(
$this->session->data['payment_method']);
            unset(
$this->session->data['payment_methods']);
            unset(
$this->session->data['comment']);
            unset(
$this->session->data['order_id']);
            unset(
$this->session->data['coupon']);
            unset(
$this->session->data['reward']);
            unset(
$this->session->data['voucher']);
            unset(
$this->session->data['vouchers']);

            
$this->event->trigger('post.customer.logout');

            
$this->response->redirect($this->url->link('account/logout''''SSL'));
        }

        
$this->load->language('account/logout');

        
$this->document->setTitle($this->language->get('heading_title'));

        
$data['breadcrumbs'] = array();

        
$data['breadcrumbs'][] = array(
            
'text' => $this->language->get('text_home'),
            
'href' => $this->url->link('common/home')
        );

        
$data['breadcrumbs'][] = array(
            
'text' => $this->language->get('text_account'),
            
'href' => $this->url->link('account/account''''SSL')
        );

        
$data['breadcrumbs'][] = array(
            
'text' => $this->language->get('text_logout'),
            
'href' => $this->url->link('account/logout''''SSL')
        );

        
$data['heading_title'] = $this->language->get('heading_title');

        
$data['text_message'] = $this->language->get('text_message');

        
$data['button_continue'] = $this->language->get('button_continue');

        
$data['continue'] = $this->url->link('common/home');

        
$data['column_left'] = $this->load->controller('common/column_left');
        
$data['column_right'] = $this->load->controller('common/column_right');
        
$data['content_top'] = $this->load->controller('common/content_top');
        
$data['content_bottom'] = $this->load->controller('common/content_bottom');
        
$data['footer'] = $this->load->controller('common/footer');
        
$data['header'] = $this->load->controller('common/header');

        if (
file_exists(DIR_TEMPLATE $this->config->get('config_template') . '/template/common/success.tpl')) {
            
$this->response->setOutput($this->load->view($this->config->get('config_template') . '/template/common/success.tpl'$data));
        } else {
            
$this->response->setOutput($this->load->view('default/template/common/success.tpl'$data));
        }
    }
}
Онлайн: 0
Реклама