|
|
|
|
@@ -34,7 +34,7 @@ class productsCategory extends Module
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
$this->name = 'productscategory';
|
|
|
|
|
$this->version = '1.3';
|
|
|
|
|
$this->version = '1.4';
|
|
|
|
|
$this->author = 'PrestaShop';
|
|
|
|
|
$this->tab = 'front_office_features';
|
|
|
|
|
$this->need_instance = 0;
|
|
|
|
|
@@ -50,16 +50,22 @@ class productsCategory extends Module
|
|
|
|
|
|
|
|
|
|
public function install()
|
|
|
|
|
{
|
|
|
|
|
if (!parent::install() OR !$this->registerHook('productfooter') OR !$this->registerHook('header') OR !Configuration::updateValue('PRODUCTSCATEGORY_DISPLAY_PRICE', 0))
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
Configuration::updateValue('PRODUCTSCATEGORY_DISPLAY_PRICE', 0);
|
|
|
|
|
$this->_clearCache('productscategory.tpl');
|
|
|
|
|
return (parent::install()
|
|
|
|
|
&& $this->registerHook('productfooter')
|
|
|
|
|
&& $this->registerHook('header')
|
|
|
|
|
&& $this->registerHook('addproduct')
|
|
|
|
|
&& $this->registerHook('updateproduct')
|
|
|
|
|
&& $this->registerHook('deleteproduct')
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function uninstall()
|
|
|
|
|
{
|
|
|
|
|
if (!parent::uninstall() OR !Configuration::deleteByName('PRODUCTSCATEGORY_DISPLAY_PRICE'))
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
Configuration::deleteByName('PRODUCTSCATEGORY_DISPLAY_PRICE');
|
|
|
|
|
$this->_clearCache('productscategory.tpl');
|
|
|
|
|
return parent::uninstall();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getContent()
|
|
|
|
|
@@ -70,6 +76,7 @@ class productsCategory extends Module
|
|
|
|
|
elseif (Tools::isSubmit('submitCross'))
|
|
|
|
|
{
|
|
|
|
|
Configuration::updateValue('PRODUCTSCATEGORY_DISPLAY_PRICE', Tools::getValue('displayPrice'));
|
|
|
|
|
$this->_clearCache('productscategory.tpl');
|
|
|
|
|
$this->_html .= $this->displayConfirmation($this->l('Settings updated successfully'));
|
|
|
|
|
}
|
|
|
|
|
$this->_html .= '
|
|
|
|
|
@@ -100,75 +107,79 @@ class productsCategory extends Module
|
|
|
|
|
|
|
|
|
|
public function hookProductFooter($params)
|
|
|
|
|
{
|
|
|
|
|
$idProduct = (int)(Tools::getValue('id_product'));
|
|
|
|
|
$product = new Product((int)($idProduct));
|
|
|
|
|
|
|
|
|
|
/* If the visitor has came to this product by a category, use this one */
|
|
|
|
|
if (isset($params['category']->id_category))
|
|
|
|
|
$category = $params['category'];
|
|
|
|
|
/* Else, use the default product category */
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (isset($product->id_category_default) AND $product->id_category_default > 1)
|
|
|
|
|
$category = New Category((int)($product->id_category_default));
|
|
|
|
|
}
|
|
|
|
|
$id_product = (int)$params['product']->id;
|
|
|
|
|
$product = $params['product'];
|
|
|
|
|
|
|
|
|
|
if (!Validate::isLoadedObject($category) OR !$category->active)
|
|
|
|
|
return;
|
|
|
|
|
$cache_id = 'productscategory|'.$id_product.'|'.(isset($params['category']->id_category) ? (int)$params['category']->id_category : $product->id_category_default);
|
|
|
|
|
|
|
|
|
|
// Get infos
|
|
|
|
|
$categoryProducts = $category->getProducts($this->context->language->id, 1, 100); /* 100 products max. */
|
|
|
|
|
$sizeOfCategoryProducts = (int)sizeof($categoryProducts);
|
|
|
|
|
$middlePosition = 0;
|
|
|
|
|
|
|
|
|
|
// Remove current product from the list
|
|
|
|
|
if (is_array($categoryProducts) AND sizeof($categoryProducts))
|
|
|
|
|
if (!$this->isCached('productscategory.tpl', $this->getCacheId($cache_id)))
|
|
|
|
|
{
|
|
|
|
|
foreach ($categoryProducts AS $key => $categoryProduct)
|
|
|
|
|
if ($categoryProduct['id_product'] == $idProduct)
|
|
|
|
|
{
|
|
|
|
|
unset($categoryProducts[$key]);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
/* If the visitor has came to this product by a category, use this one */
|
|
|
|
|
if (isset($params['category']->id_category))
|
|
|
|
|
$category = $params['category'];
|
|
|
|
|
/* Else, use the default product category */
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (isset($product->id_category_default) AND $product->id_category_default > 1)
|
|
|
|
|
$category = new Category((int)$product->id_category_default);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!Validate::isLoadedObject($category) OR !$category->active)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
$taxes = Product::getTaxCalculationMethod();
|
|
|
|
|
if (Configuration::get('PRODUCTSCATEGORY_DISPLAY_PRICE'))
|
|
|
|
|
// Get infos
|
|
|
|
|
$categoryProducts = $category->getProducts($this->context->language->id, 1, 100); /* 100 products max. */
|
|
|
|
|
$sizeOfCategoryProducts = (int)sizeof($categoryProducts);
|
|
|
|
|
$middlePosition = 0;
|
|
|
|
|
|
|
|
|
|
// Remove current product from the list
|
|
|
|
|
if (is_array($categoryProducts) AND sizeof($categoryProducts))
|
|
|
|
|
{
|
|
|
|
|
foreach ($categoryProducts AS $key => $categoryProduct)
|
|
|
|
|
if ($categoryProduct['id_product'] != $idProduct)
|
|
|
|
|
if ($categoryProduct['id_product'] == $id_product)
|
|
|
|
|
{
|
|
|
|
|
if ($taxes == 0 OR $taxes == 2)
|
|
|
|
|
$categoryProducts[$key]['displayed_price'] = Product::getPriceStatic((int)$categoryProduct['id_product'], true, NULL, 2);
|
|
|
|
|
elseif ($taxes == 1)
|
|
|
|
|
$categoryProducts[$key]['displayed_price'] = Product::getPriceStatic((int)$categoryProduct['id_product'], false, NULL, 2);
|
|
|
|
|
unset($categoryProducts[$key]);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get positions
|
|
|
|
|
$middlePosition = round($sizeOfCategoryProducts / 2, 0);
|
|
|
|
|
$productPosition = $this->getCurrentProduct($categoryProducts, (int)$idProduct);
|
|
|
|
|
|
|
|
|
|
// Flip middle product with current product
|
|
|
|
|
if ($productPosition)
|
|
|
|
|
{
|
|
|
|
|
$tmp = $categoryProducts[$middlePosition-1];
|
|
|
|
|
$categoryProducts[$middlePosition-1] = $categoryProducts[$productPosition];
|
|
|
|
|
$categoryProducts[$productPosition] = $tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If products tab higher than 30, slice it
|
|
|
|
|
if ($sizeOfCategoryProducts > 30)
|
|
|
|
|
{
|
|
|
|
|
$categoryProducts = array_slice($categoryProducts, $middlePosition - 15, 30, true);
|
|
|
|
|
$middlePosition = 15;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Display tpl
|
|
|
|
|
$this->smarty->assign(array(
|
|
|
|
|
'categoryProducts' => $categoryProducts,
|
|
|
|
|
'middlePosition' => (int)$middlePosition,
|
|
|
|
|
'ProdDisplayPrice' => Configuration::get('PRODUCTSCATEGORY_DISPLAY_PRICE')));
|
|
|
|
|
|
|
|
|
|
return $this->display(__FILE__, 'productscategory.tpl');
|
|
|
|
|
$taxes = Product::getTaxCalculationMethod();
|
|
|
|
|
if (Configuration::get('PRODUCTSCATEGORY_DISPLAY_PRICE'))
|
|
|
|
|
foreach ($categoryProducts AS $key => $categoryProduct)
|
|
|
|
|
if ($categoryProduct['id_product'] != $id_product)
|
|
|
|
|
{
|
|
|
|
|
if ($taxes == 0 OR $taxes == 2)
|
|
|
|
|
$categoryProducts[$key]['displayed_price'] = Product::getPriceStatic((int)$categoryProduct['id_product'], true, NULL, 2);
|
|
|
|
|
elseif ($taxes == 1)
|
|
|
|
|
$categoryProducts[$key]['displayed_price'] = Product::getPriceStatic((int)$categoryProduct['id_product'], false, NULL, 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get positions
|
|
|
|
|
$middlePosition = round($sizeOfCategoryProducts / 2, 0);
|
|
|
|
|
$productPosition = $this->getCurrentProduct($categoryProducts, (int)$id_product);
|
|
|
|
|
|
|
|
|
|
// Flip middle product with current product
|
|
|
|
|
if ($productPosition)
|
|
|
|
|
{
|
|
|
|
|
$tmp = $categoryProducts[$middlePosition-1];
|
|
|
|
|
$categoryProducts[$middlePosition-1] = $categoryProducts[$productPosition];
|
|
|
|
|
$categoryProducts[$productPosition] = $tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If products tab higher than 30, slice it
|
|
|
|
|
if ($sizeOfCategoryProducts > 30)
|
|
|
|
|
{
|
|
|
|
|
$categoryProducts = array_slice($categoryProducts, $middlePosition - 15, 30, true);
|
|
|
|
|
$middlePosition = 15;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Display tpl
|
|
|
|
|
$this->smarty->assign(array(
|
|
|
|
|
'categoryProducts' => $categoryProducts,
|
|
|
|
|
'middlePosition' => (int)$middlePosition,
|
|
|
|
|
'ProdDisplayPrice' => Configuration::get('PRODUCTSCATEGORY_DISPLAY_PRICE')));
|
|
|
|
|
}
|
|
|
|
|
return $this->display(__FILE__, 'productscategory.tpl', $this->getCacheId($cache_id));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function hookHeader($params)
|
|
|
|
|
@@ -177,4 +188,19 @@ class productsCategory extends Module
|
|
|
|
|
$this->context->controller->addJS($this->_path.'productscategory.js');
|
|
|
|
|
$this->context->controller->addJqueryPlugin('serialScroll');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function hookAddProduct($params)
|
|
|
|
|
{
|
|
|
|
|
$this->_clearCache('productscategory.tpl');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function hookUpdateProduct($params)
|
|
|
|
|
{
|
|
|
|
|
$this->_clearCache('productscategory.tpl');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function hookDeleteProduct($params)
|
|
|
|
|
{
|
|
|
|
|
$this->_clearCache('productscategory.tpl');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|