Вход Регистрация
Файл: upload-2031-rs1/catalog/controller/common/search.php
Строк: 20
<?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'] = '';
        }

        if (
file_exists(DIR_TEMPLATE $this->config->get('config_template') . '/template/common/search.tpl')) {
            return 
$this->load->view($this->config->get('config_template') . '/template/common/search.tpl'$data);
        } else {
            return 
$this->load->view('default/template/common/search.tpl'$data);
        }
    }
}
Онлайн: 1
Реклама