Your IP : 3.134.94.230


Current Path : /var/www/alh/upload/catalog/controller/common/
Upload File :
Current File : /var/www/alh/upload/catalog/controller/common/search.php

<?php
class ControllerCommonSearch extends Controller {
	public function index() {
		$this->load->language('common/search');

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

		if (isset($this->request->get['search'])) {
			$data['search'] = $this->request->get['search'];
		} else {
			$data['search'] = '';
		}

		return $this->load->view('common/search', $data);
	}
}