Your IP : 18.117.7.131


Current Path : /proc/self/root/home/sudancam/.trash/shop.1/catalog/controller/common/
Upload File :
Current File : //proc/self/root/home/sudancam/.trash/shop.1/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);
	}
}