shop.balmet.com

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

not_found.php (786B)


      1 <?php
      2 class ControllerErrorNotFound extends Controller {
      3 	public function index() {
      4 		/*
      5 		$this->load->language('error/not_found');
      6 
      7 		$this->document->setTitle($this->language->get('heading_title'));
      8 		
      9 		$data['heading_title'] = $this->language->get('heading_title');
     10 
     11 		$data['text_error'] = $this->language->get('text_error');
     12 
     13 		$data['button_continue'] = $this->language->get('button_continue');
     14 
     15 		$data['continue'] = $this->url->link('common/home');
     16 
     17 		$data['footer'] = $this->load->controller('common/footer');
     18 		$data['header'] = $this->load->controller('common/header');
     19 
     20 		$this->response->addHeader($this->request->server['SERVER_PROTOCOL'] . ' 404 Not Found');
     21 
     22 		$this->response->setOutput($this->load->view('error/not_found', $data));
     23 		*/
     24 	}
     25 }