<?php
class ControllerCheckoutSuccess extends Controller { 
	public function index() { 	
		if (isset($this->session->data['order_id'])) {
			/** Mondial Relay **/
			if (isset($this->session->data['shipping_mondialrelay_num'])) {
				$this->load->model('shipping/mondialrelay');
				$ret = $this->model_shipping_mondialrelay->saveChoixClient($this->session->data['order_id'], $this->session->data['shipping_mondialrelay_num']);
				unset($this->session->data['shipping_mondialrelay_num']);
				
				//$this->document->setTitle($ret);
			}
			/** Mondial Relay **/
			
			$this->cart->clear();
			
			/** Mondial Relay **/
			unset($this->session->data['shipping_method']);
			unset($this->session->data['shipping_methods']);
			/** Mondial Relay **/

			unset($this->session->data['shipping_method']);
			unset($this->session->data['shipping_methods']);
			unset($this->session->data['payment_method']);
			unset($this->session->data['payment_methods']);
			unset($this->session->data['guest']);
			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->language->load('checkout/success');
		
		
			$ast_sval = array("", $this->config->get('config_title'), $this->language->get('heading_title'), $this->config->get('ast_custom'));
			$ast_sorder = explode(",",$this->config->get('ast_sorder'));
			$ast_ssep = explode(",",$this->config->get('ast_ssep'));
			$newTitle = $ast_sval[$ast_sorder[0]];
			for($i=1;$i<3;$i++) {
				$newTitle .= ($ast_ssep[$i-1].$ast_sval[$ast_sorder[$i]]);
			}
			$this->document->setTitle($newTitle);
		
		$this->data['breadcrumbs'] = array(); 

      	$this->data['breadcrumbs'][] = array(
        	'href'      => $this->url->link('common/home'),
        	'text'      => $this->language->get('text_home'),
        	'separator' => false
      	); 
		
      	$this->data['breadcrumbs'][] = array(
        	'href'      => $this->url->link('checkout/cart'),
        	'text'      => $this->language->get('text_basket'),
        	'separator' => $this->language->get('text_separator')
      	);
				
		$this->data['breadcrumbs'][] = array(
			'href'      => $this->url->link('checkout/checkout', '', 'SSL'),
			'text'      => $this->language->get('text_checkout'),
			'separator' => $this->language->get('text_separator')
		);	
					
      	$this->data['breadcrumbs'][] = array(
        	'href'      => $this->url->link('checkout/success'),
        	'text'      => $this->language->get('text_success'),
        	'separator' => $this->language->get('text_separator')
      	);

		$this->data['heading_title'] = $this->language->get('heading_title');
		
		if ($this->customer->isLogged()) {
    		$this->data['text_message'] = sprintf($this->language->get('text_customer'), $this->url->link('account/account', '', 'SSL'), $this->url->link('account/order', '', 'SSL'), $this->url->link('account/download', '', 'SSL'), $this->url->link('information/contact'));
		} else {
    		$this->data['text_message'] = sprintf($this->language->get('text_guest'), $this->url->link('information/contact'));
		}
		
    	$this->data['button_continue'] = $this->language->get('button_continue');

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

		if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/success.tpl')) {
			$this->template = $this->config->get('config_template') . '/template/common/success.tpl';
		} else {
			$this->template = 'default/template/common/success.tpl';
		}
		
		$this->children = array(
			'common/column_left',
			'common/column_right',
			'common/content_top',
			'common/content_bottom',
			'common/footer',
			'common/header'			
		);
				
		$this->response->setOutput($this->render());
  	}
}
?>