72 lines
3.0 KiB
PHP
72 lines
3.0 KiB
PHP
<?php
|
|
|
|
if (!defined('_PS_VERSION_'))
|
|
exit;
|
|
|
|
class HomeFeaturedOverride extends HomeFeatured
|
|
{
|
|
|
|
public function hookDisplayHome($params)
|
|
{
|
|
if (!$this->isCached('homefeatured.tpl', $this->getCacheId()))
|
|
{
|
|
$this->smarty->assign(
|
|
array(
|
|
'homeFeaturedProducts' => $this->getHomeFeaturedProducts(),
|
|
'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'),
|
|
'homeSize' => Image::getSize(ImageType::getFormatedName('home')),
|
|
)
|
|
);
|
|
}
|
|
|
|
return $this->display(__FILE__, 'homefeatured.tpl', $this->getCacheId());
|
|
}
|
|
|
|
public static function getHomeFeaturedProducts()
|
|
{
|
|
$context = Context::getContext();
|
|
$id_lang = $context->language->id;
|
|
|
|
$sql = 'SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity,
|
|
'.(Combination::isFeatureActive()?'product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity,IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute,':'').'
|
|
pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`,
|
|
pl.`meta_keywords`, pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`,
|
|
m.`name` AS manufacturer_name, p.`id_manufacturer` as id_manufacturer,
|
|
image_shop.`id_image` id_image, il.`legend`, t.`rate`, pl.`meta_keywords`, pl.`meta_title`, pl.`meta_description`'
|
|
.' FROM `'._DB_PREFIX_.'product` p
|
|
'.Shop::addSqlAssociation('product', 'p', false);
|
|
if (Combination::isFeatureActive()) {
|
|
$sql .= ' LEFT JOIN `'._DB_PREFIX_.'product_attribute_shop` product_attribute_shop
|
|
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop='.(int)$context->shop->id.')';
|
|
}
|
|
|
|
$sql .= ' LEFT JOIN `'._DB_PREFIX_.'product_lang` pl
|
|
ON p.`id_product` = pl.`id_product`
|
|
AND pl.`id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').'
|
|
LEFT JOIN `'._DB_PREFIX_.'image_shop` image_shop
|
|
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop='.(int)$context->shop->id.')
|
|
LEFT JOIN `'._DB_PREFIX_.'image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = '.(int)$id_lang.')
|
|
LEFT JOIN `'._DB_PREFIX_.'manufacturer` m ON (m.`id_manufacturer` = p.`id_manufacturer`)
|
|
LEFT JOIN `'._DB_PREFIX_.'tax_rule` tr ON (product_shop.`id_tax_rules_group` = tr.`id_tax_rules_group`)
|
|
AND tr.`id_country` = '.(int)$context->country->id.'
|
|
AND tr.`id_state` = 0
|
|
LEFT JOIN `'._DB_PREFIX_.'tax` t ON (t.`id_tax` = tr.`id_tax`)
|
|
'.Product::sqlStock('p', 0);
|
|
|
|
$sql .= '
|
|
WHERE product_shop.`active` = 1
|
|
AND product_shop.`home_edito` = 1
|
|
AND p.`visibility` != \'none\'
|
|
ORDER BY p.`id_product` DESC';
|
|
|
|
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
|
|
|
if (!$result) {
|
|
return false;
|
|
}
|
|
|
|
return Product::getProductsProperties($id_lang, $result);
|
|
}
|
|
|
|
}
|