Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

Подключение поиска


Recommended Posts

Здравствуйте.

У меня возникла проблема.

Как сделать так, чтобы поиск был на всех страницах сайта, но код формы поиска не находился в catalog/view/theme/default/template/common/header.tpl ?

На главной странице я сделал так:

1. Вставил код формы поиска в catalog/view/theme/default/template/common/home.tpl

2. Из файла catalog/controller/common/header.php вставил класс ControllerCommonHeader и функцию getCategories в файл catalog/controller/common/home.php

Больше ничего не меняя, получился такой код файла home.php:

<?php  
class ControllerCommonHome extends Controller {
public function index() {
if (($this->request->server['REQUEST_METHOD'] == 'POST') && isset($this->request->post['language_code'])) {
		$this->session->data['language'] = $this->request->post['language_code'];

		if (isset($this->request->post['redirect'])) {
			$this->redirect($this->request->post['redirect']);
		} else {
			$this->redirect(HTTP_SERVER . 'index.php?route=common/home');
		}
   	}		

	if (($this->request->server['REQUEST_METHOD'] == 'POST') && isset($this->request->post['currency_code'])) {
     		$this->currency->set($this->request->post['currency_code']);

		unset($this->session->data['shipping_methods']);
		unset($this->session->data['shipping_method']);

		if (isset($this->request->post['redirect'])) {
			$this->redirect($this->request->post['redirect']);
		} else {
			$this->redirect(HTTP_SERVER . 'index.php?route=common/home');
		}
  		}

	$this->language->load('common/header');

	if (isset($this->request->server['HTTPS']) && (($this->request->server['HTTPS'] == 'on') || ($this->request->server['HTTPS'] == '1'))) {
		$server = HTTPS_IMAGE;
	} else {
		$server = HTTP_IMAGE;
	}

	foreach(get_object_vars($this->document) as $key => $value) {
		$this->data[$key] = $value;
	}

	if (isset($this->request->server['HTTPS']) && (($this->request->server['HTTPS'] == 'on') || ($this->request->server['HTTPS'] == '1'))) {
		$this->data['base'] = HTTPS_SERVER;
	} else {
		$this->data['base'] = HTTP_SERVER;
	}

	if ($this->config->get('config_icon') && file_exists(DIR_IMAGE . $this->config->get('config_icon'))) {
		$this->data['icon'] = $server . $this->config->get('config_icon');
	} else {
		$this->data['icon'] = '';
	}

	if ($this->config->get('config_logo') && file_exists(DIR_IMAGE . $this->config->get('config_logo'))) {
		$this->data['logo'] = $server . $this->config->get('config_logo');
	} else {
		$this->data['logo'] = '';
	}

	$this->data['charset'] = $this->language->get('charset');
	$this->data['lang'] = $this->language->get('code');
	$this->data['direction'] = $this->language->get('direction');
	$this->data['template'] = $this->config->get('config_template');
	$this->data['store'] = $this->config->get('config_name');

	$this->data['text_home'] = $this->language->get('text_home');
	$this->data['text_special'] = $this->language->get('text_special');
	$this->data['text_contact'] = $this->language->get('text_contact');
	$this->data['text_sitemap'] = $this->language->get('text_sitemap');
	$this->data['text_bookmark'] = $this->language->get('text_bookmark');
   	$this->data['text_account'] = $this->language->get('text_account');
   	$this->data['text_login'] = $this->language->get('text_login');
   	$this->data['text_logout'] = $this->language->get('text_logout');
   	$this->data['text_cart'] = $this->language->get('text_cart'); 
   	$this->data['text_checkout'] = $this->language->get('text_checkout');
	$this->data['text_keyword'] = $this->language->get('text_keyword');
	$this->data['text_category'] = $this->language->get('text_category');
	$this->data['text_advanced'] = $this->language->get('text_advanced');

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

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

	$this->data['home'] = HTTP_SERVER . 'index.php?route=common/home';
	$this->data['special'] = HTTP_SERVER . 'index.php?route=product/special';
	$this->data['contact'] = HTTP_SERVER . 'index.php?route=information/contact';
   	$this->data['sitemap'] = HTTP_SERVER . 'index.php?route=information/sitemap';
   	$this->data['account'] = HTTPS_SERVER . 'index.php?route=account/account';
	$this->data['logged'] = $this->customer->isLogged();
	$this->data['login'] = HTTPS_SERVER . 'index.php?route=account/login';
	$this->data['logout'] = HTTP_SERVER . 'index.php?route=account/logout';
   	$this->data['cart'] = HTTP_SERVER . 'index.php?route=checkout/cart';
	$this->data['checkout'] = HTTPS_SERVER . 'index.php?route=checkout/shipping';

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

	if (isset($this->request->get['category_id'])) {
		$this->data['category_id'] = $this->request->get['category_id'];
	} elseif (isset($this->request->get['path'])) {
		$path = explode('_', $this->request->get['path']);

		$this->data['category_id'] = end($path);
	} else {
		$this->data['category_id'] = '';
	}

	$this->data['advanced'] = HTTP_SERVER . 'index.php?route=product/search';

	$this->load->model('catalog/category');

	$this->data['categories'] = $this->getCategories(0);

	$this->data['action'] = HTTP_SERVER . 'index.php?route=common/home';

	if (!isset($this->request->get['route'])) {
		$this->data['redirect'] = HTTP_SERVER . 'index.php?route=common/home';
	} else {
		$this->load->model('tool/seo_url');

		$data = $this->request->get;

		unset($data['_route_']);

		$route = $data['route'];

		unset($data['route']);

		$url = '';

		if ($data) {
			$url = '&' . urldecode(http_build_query($data));
		}			

		$this->data['redirect'] = $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=' . $route . $url);
	}

	$this->data['language_code'] = $this->session->data['language'];

	$this->load->model('localisation/language');

	$this->data['languages'] = array();

	$results = $this->model_localisation_language->getLanguages();

	foreach ($results as $result) {
		if ($result['status']) {
			$this->data['languages'][] = array(
				'name'  => $result['name'],
				'code'  => $result['code'],
				'image' => $result['image']
			);	
		}
	}

	$this->data['currency_code'] = $this->currency->getCode(); 

	$this->load->model('localisation/currency');

	 $this->data['currencies'] = array();

	$results = $this->model_localisation_currency->getCurrencies();	

	foreach ($results as $result) {
		if ($result['status']) {
  				$this->data['currencies'][] = array(
				'title' => $result['title'],
				'code'  => $result['code']
			);
		}
	}

	$this->id = 'header';

	if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/header.tpl')) {
		$this->template = $this->config->get('config_template') . '/template/common/header.tpl';
	} else {
		$this->template = 'default/template/common/header.tpl';
	}

   	$this->render();

	$this->language->load('common/home');

	$this->document->title = $this->config->get('config_title');
	$this->document->description = $this->config->get('config_meta_description');

	$this->data['heading_title'] = sprintf($this->language->get('heading_title'), $this->config->get('config_name'));

	$this->load->model('setting/store');

	if (!$this->config->get('config_store_id')) {
		$this->data['welcome'] = html_entity_decode($this->config->get('config_description_' . $this->config->get('config_language_id')), ENT_QUOTES, 'UTF-8');
	} else {
		$store_info = $this->model_setting_store->getStore($this->config->get('config_store_id'));

		if ($store_info) {
			$this->data['welcome'] = html_entity_decode($store_info['description'], ENT_QUOTES, 'UTF-8');
		} else {
			$this->data['welcome'] = '';
		}
	}

	if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/home.tpl')) {
		$this->template = $this->config->get('config_template') . '/template/common/home.tpl';
	} else {
		$this->template = 'default/template/common/home.tpl';
	}

	$this->children = array();

	$this->load->model('checkout/extension');

	$module_data = $this->model_checkout_extension->getExtensionsByPosition('module', 'home');

	$this->data['modules'] = $module_data;

	foreach ($module_data as $result) {
		$this->children[] = 'module/' . $result['code'];
	}

	$this->children[] = 'common/column_right';
	$this->children[] =	'common/column_left';
	$this->children[] =	'common/footer';
	$this->children[] =	'common/header';

	$this->response->setOutput($this->render(TRUE), $this->config->get('config_compression'));
}


private function getCategories($parent_id, $level = 0) {
	$level++;

	$data = array();

	$results = $this->model_catalog_category->getCategories($parent_id);

	foreach ($results as $result) {
		$data[] = array(
			'category_id' => $result['category_id'],
			'name'        => str_repeat('    ', $level) . $result['name']
		);

		$children = $this->getCategories($result['category_id'], $level);

		if ($children) {
		  $data = array_merge($data, $children);
		}
	}

	return $data;
}
}
?>

3. Если не делать второго пункта, вылазиют нотисы

Notice: Undefined variable: entry_search in \catalog\view\theme\default\template\common\home.tpl
...
и тому подобные...

Возможно ли сделать так, чтобы поиск был на всех страницах, не выполняя того, что я описал во втором пункте? Допустим вынести код формы поиска в отдельный файл и подключать его на каждой странице, типа как подключаются блоки на сайте:

<?php echo $column_left; ?>
<?php echo $column_right; ?>
...

Надіслати
Поділитися на інших сайтах


Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
  • Зараз на сторінці   0 користувачів

    • Ні користувачів, які переглядиють цю сторінку
×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.