服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > zencart教程 >

zencart判断产品是否为新品,特价

时间:2016-01-13 13:59来源: 作者: 点击:
问:zencart 是如何判断产品是否为新品,特价。 答: 1.在includes/functions/extra_functions/my_products.php 加入下面的代码。 ======================= ?php function my_zen_get_products_price_is_specials($product_id){

问:zencart 是如何判断产品是否为新品,特价。

答:

1.在includes/functions/extra_functions/my_products.php 加入下面的代码。

=======================

<?php
function my_zen_get_products_price_is_specials($product_id){
        global $db;
        $specials = $db->Execute("select specials_new_products_price from " . TABLE_SPECIALS . " where products_id = '" . (int)$product_id . "' and status='1'");
        if ($specials->RecordCount() > 0) {
                return true;
         } else {
                return false;
         }
        }
function my_zen_get_products_price_is_new($product_id){
        if(SHOW_NEW_PRODUCTS_LIMIT == 0)
                return true;
        global $db;
        $product = $db->Execute("select products_date_added from " . TABLE_PRODUCTS . " where  products_id = '" . (int)$product_id . "' and products_status='1'");
        if($product->RecordCount()>0){
                $now=time();
                $mintime=$now-SHOW_NEW_PRODUCTS_LIMIT*86400;
                if(strtotime($product->fields['products_date_added'])>$mintime){
                        return true;
                }else{
                        return false;
                }
        }else{
                return false;
        }
}
?>

=========================

2。任何地方都可以使用
判断一个产品是否有特价
if(my_zen_get_products_price_is_specials($product_id)){

}else{

}
判断一个产品是新产品
如果后台没有设置都是新产品 
if(my_zen_get_products_price_is_new($product_id)){

}else{

}

效果图:

 

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------