Здравствуйте. Есть модуль последних просмотренных товаров на сайте. Работает отлично. Но мне нужно чтобы ссылка на товар из этого модуля, была такой:
http://prima-shop.com.ua/index.php?route=product/product&path=61_73&product_id=52
Должны быть такие элементы:
&path=61_73
&product_id=52
В контроллере модуля php, есть такая часть кода:
$data['products'][] = array(
'product_id' => $product_info['product_id'],
'thumb' => $image,
'name' => $product_info['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($product_info['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $rating,
'href' => $this->url->link('product/product', 'product_id=' . $product_info['product_id'])
);
Там интересует строчка:
'href' => $this->url->link('product/product', 'product_id=' . $product_info['product_id'])
По умолчанию на сайте выводиться такая ссылка:
http://prima-shop.com.ua/index.php?route=product/product&product_id=52
Т.е. ид категорий &path=61_73 теряется.
Пытался сделать так:
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'], 'product_id=' . $product_info['product_id'])
Но получаю ссылку вида:
http://prima-shop.com.ua/index.php?route=product/product&path=61_73
Но теперь теряется ид товара &product_id=52
Полный код файла php модуля последних просмотренных товаров:
<?php
class ControllerExtensionModuleViewed extends Controller {
public function index($setting) {
$this->load->language('extension/module/viewed');
$data['heading_title'] = $this->language->get('heading_title');
$data['text_tax'] = $this->language->get('text_tax');
$data['button_cart'] = $this->language->get('button_cart');
$data['button_wishlist'] = $this->language->get('button_wishlist');
$data['button_compare'] = $this->language->get('button_compare');
$this->load->model('catalog/product');
$this->load->model('tool/image');
$data['products'] = array();
$products = array();
if (isset($this->request->cookie['viewed'])) {
$products = explode(',', $this->request->cookie['viewed']);
} else if (isset($this->session->data['viewed'])) {
$products = $this->session->data['viewed'];
}
if (isset($this->request->get['route']) && $this->request->get['route'] == 'product/product') {
$product_id = $this->request->get['product_id'];
$products = array_diff($products, array($product_id));
array_unshift($products, $product_id);
setcookie('viewed', implode(',',$products), time() + 60 * 60 * 24 * 30, '/', $this->request->server['HTTP_HOST']);
}
if (empty($setting['limit'])) {
$setting['limit'] = 4;
}
$products = array_slice($products, 0, (int)$setting['limit']);
foreach ($products as $product_id) {
$product_info = $this->model_catalog_product->getProduct($product_id);
if ($product_info) {
if ($product_info['image']) {
$image = $this->model_tool_image->resize($product_info['image'], $setting['width'], $setting['height']);
} else {
$image = $this->model_tool_image->resize('placeholder.png', $setting['width'], $setting['height']);
}
if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
$price = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
} else {
$price = false;
}
if ((float)$product_info['special']) {
$special = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
} else {
$special = false;
}
if ($this->config->get('config_tax')) {
$tax = $this->currency->format((float)$product_info['special'] ? $product_info['special'] : $product_info['price'], $this->session->data['currency']);
} else {
$tax = false;
}
if ($this->config->get('config_review_status')) {
$rating = $product_info['rating'];
} else {
$rating = false;
}
$data['products'][] = array(
'product_id' => $product_info['product_id'],
'thumb' => $image,
'name' => $product_info['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($product_info['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $rating,
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'], 'product_id=' . $product_info['product_id'])
);
}
}
if ($data['products']) {
return $this->load->view('extension/module/viewed', $data);
}
}
}
Ссылка на новость http://prima-shop.com.ua/index.php?route=product/product&path=61_73&product_id=52
Просмотренные товары в самом низу