shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

not_found.php (931B)


      1 <?php
      2 class ControllerErrorNotFound extends Controller {
      3 	public function index() {
      4 		$this->load->language('error/not_found');
      5 		
      6 		$this->document->setTitle($this->language->get('heading_title'));
      7 
      8 		$data['breadcrumbs'] = array();
      9 
     10 		$data['breadcrumbs'][] = array(
     11 			'text' => $this->language->get('text_home'),
     12 			'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true)
     13 		);
     14 
     15 		$data['breadcrumbs'][] = array(
     16 			'text' => $this->language->get('heading_title'),
     17 			'href' => $this->url->link('error/not_found', 'user_token=' . $this->session->data['user_token'], true)
     18 		);
     19 
     20 		$data['header'] = $this->load->controller('common/header');
     21 		$data['column_left'] = $this->load->controller('common/column_left');
     22 		$data['footer'] = $this->load->controller('common/footer');
     23 
     24 		$this->response->setOutput($this->load->view('error/not_found', $data));
     25 	}
     26 }