198 lines
7.9 KiB
PHP
Executable File
198 lines
7.9 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2014 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/osl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2014 PrestaShop SA
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class Manufacturer extends ManufacturerCore{
|
|
|
|
public $video;
|
|
public $desc_marque_priv;
|
|
public $desc_savoir;
|
|
public $desc_priv_prod;
|
|
public $subtitle;
|
|
public $showcar;
|
|
|
|
public static $definition = array(
|
|
'table' => 'manufacturer',
|
|
'primary' => 'id_manufacturer',
|
|
'multilang' => true,
|
|
'fields' => array(
|
|
'name' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'required' => true, 'size' => 64),
|
|
'active' => array('type' => self::TYPE_BOOL),
|
|
'showcar' => array('type' => self::TYPE_BOOL),
|
|
'date_add' => array('type' => self::TYPE_DATE),
|
|
'date_upd' => array('type' => self::TYPE_DATE),
|
|
|
|
// Lang fields
|
|
'video' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'desc_marque_priv' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'desc_savoir' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'desc_priv_prod' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'subtitle' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'description' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'short_description' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
|
|
'meta_title' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 128),
|
|
'meta_description' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 255),
|
|
'meta_keywords' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName'),
|
|
),
|
|
);
|
|
|
|
public static function getManu($id_manu){
|
|
$context = Context::getContext();
|
|
$manu = new Manufacturer((int)$id_manu,$context->cookie->id_lang);
|
|
return $manu;
|
|
}
|
|
|
|
public static function getProducts($id_manufacturer, $id_lang, $p=0, $n=3, $order_by = null, $order_way = null,
|
|
$get_total = false, $active = true, $active_category = true, Context $context = null)
|
|
{
|
|
if (!$context)
|
|
$context = Context::getContext();
|
|
|
|
$front = true;
|
|
if (!in_array($context->controller->controller_type, array('front', 'modulefront')))
|
|
$front = false;
|
|
|
|
if ($p < 1)
|
|
$p = 1;
|
|
$n=3;
|
|
if (empty($order_by) || $order_by == 'position')
|
|
$order_by = 'name';
|
|
|
|
if (empty($order_way)) $order_way = 'ASC';
|
|
|
|
if (!Validate::isOrderBy($order_by) || !Validate::isOrderWay($order_way))
|
|
die (Tools::displayError());
|
|
|
|
$groups = FrontController::getCurrentCustomerGroups();
|
|
$sql_groups = count($groups) ? 'IN ('.implode(',', $groups).')' : '= 1';
|
|
|
|
/* Return only the number of products */
|
|
if ($get_total)
|
|
{
|
|
$sql = '
|
|
SELECT p.`id_product`
|
|
FROM `'._DB_PREFIX_.'product` p
|
|
'.Shop::addSqlAssociation('product', 'p').'
|
|
WHERE p.id_manufacturer = '.(int)$id_manufacturer
|
|
.($active ? ' AND product_shop.`active` = 1' : '').'
|
|
'.($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '').'
|
|
AND p.`id_product` IN (
|
|
SELECT cp.`id_product`
|
|
FROM `'._DB_PREFIX_.'category_group` cg
|
|
LEFT JOIN `'._DB_PREFIX_.'category_product` cp ON (cp.`id_category` = cg.`id_category`)'.
|
|
($active_category ? ' INNER JOIN `'._DB_PREFIX_.'category` ca ON cp.`id_category` = ca.`id_category` AND ca.`active` = 1' : '').'
|
|
WHERE cg.`id_group` '.$sql_groups.'
|
|
)';
|
|
|
|
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
|
return (int)count($result);
|
|
}
|
|
if (strpos($order_by, '.') > 0)
|
|
{
|
|
$order_by = explode('.', $order_by);
|
|
$order_by = pSQL($order_by[0]).'.`'.pSQL($order_by[1]).'`';
|
|
}
|
|
$alias = '';
|
|
if ($order_by == 'price')
|
|
$alias = 'product_shop.';
|
|
elseif ($order_by == 'name')
|
|
$alias = 'pl.';
|
|
elseif ($order_by == 'manufacturer_name')
|
|
{
|
|
$order_by = 'name';
|
|
$alias = 'm.';
|
|
}
|
|
elseif ($order_by == 'quantity')
|
|
$alias = 'stock.';
|
|
else
|
|
$alias = 'p.';
|
|
$sql = 'SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, MAX(product_attribute_shop.`id_product_attribute`) 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`, MAX(image_shop.`id_image`) id_image, il.`legend`, m.`name` AS manufacturer_name,
|
|
DATEDIFF(
|
|
product_shop.`date_add`,
|
|
DATE_SUB(
|
|
NOW(),
|
|
INTERVAL '.(Validate::isUnsignedInt(Configuration::get('PS_NB_DAYS_NEW_PRODUCT')) ? Configuration::get('PS_NB_DAYS_NEW_PRODUCT') : 20).' DAY
|
|
)
|
|
) > 0 AS new
|
|
FROM `'._DB_PREFIX_.'product` p
|
|
'.Shop::addSqlAssociation('product', 'p').'
|
|
LEFT JOIN `'._DB_PREFIX_.'product_attribute` pa
|
|
ON (p.`id_product` = pa.`id_product`)
|
|
'.Shop::addSqlAssociation('product_attribute', 'pa', false, 'product_attribute_shop.`default_on` = 1').'
|
|
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` i
|
|
ON (i.`id_product` = p.`id_product`)'.
|
|
Shop::addSqlAssociation('image', 'i', false, 'image_shop.cover=1').'
|
|
LEFT JOIN `'._DB_PREFIX_.'image_lang` il
|
|
ON (i.`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`)
|
|
'.Product::sqlStock('p', 0).'
|
|
WHERE p.`id_manufacturer` = '.(int)$id_manufacturer.'
|
|
'.($active ? ' AND product_shop.`active` = 1' : '').'
|
|
'.($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '').'
|
|
AND p.`id_product` IN (
|
|
SELECT cp.`id_product`
|
|
FROM `'._DB_PREFIX_.'category_group` cg
|
|
LEFT JOIN `'._DB_PREFIX_.'category_product` cp
|
|
ON (cp.`id_category` = cg.`id_category`)'.
|
|
($active_category ? ' INNER JOIN `'._DB_PREFIX_.'category` ca ON cp.`id_category` = ca.`id_category` AND ca.`active` = 1' : '').'
|
|
WHERE cg.`id_group` '.$sql_groups.'
|
|
)
|
|
GROUP BY product_shop.id_product
|
|
ORDER BY RAND()
|
|
LIMIT 20';
|
|
|
|
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
|
|
|
|
|
if (!$result)
|
|
return false;
|
|
|
|
if ($order_by == 'price')
|
|
Tools::orderbyPrice($result, $order_way);
|
|
|
|
|
|
$products = array();
|
|
$i = 0;
|
|
foreach(Product::getProductsProperties($id_lang, $result) as $product){
|
|
if( $i < 3 ){
|
|
$id_category = $product['id_category_default'];
|
|
$privatesale = SaleCore::loadSaleFromCategoryId($id_category, (int) $context->cookie->id_lang);
|
|
if( strtotime($privatesale->date_start) < time() && strtotime($privatesale->date_end) > time() && $privatesale->active){
|
|
$products[] = $product;
|
|
$i++;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $products;
|
|
}
|
|
|
|
}
|
|
?>
|