16 lines
384 B
PHP
16 lines
384 B
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);
|
|
}
|
|
} |