最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > CMS教程 > ECShop教程 >

ecshop 获取点击人气排行榜的方法

时间:2014-06-10 11:03来源: 作者: 点击:
主要修改两部分。 index.php 和 lib_goods.php 关于涉及到 index.dwt 的,请将按销量排行的改为 from = top_hots_all index.php 增加 $smarty-assign('top_hots_all',get_top10_hot(0));// 全部人气排行 /** lib_goods.php
(责任编辑:admin)

主要修改两部分。index.phplib_goods.php
 
关于涉及到index.dwt的,请将按销量排行的改为from = top_hots_all
  index.php
增加
 $smarty->assign('top_hots_all',       get_top10_hot(0));           //
全部人气排行
 /**
 lib_goods.php lib
库增加函数(children取得子类产品id
 *
调用当前人气排行榜
 *
按点击排列 i<10 显示10
 * @access  public
 * @param   string  $cats  
查询的分类
 * @return  array
 */
 function get_top10_hot($cats)
 {
 if (empty($cats))
 {
   $children = '';
 }
    else 
{
     $children =  "WHERE ".get_children($cats);
 }
   $sql = 'SELECT * ' .
             ' FROM ' . $GLOBALS['ecs']->table('goods') .' g '.
             "  $children" .
             ' ORDER BY click_count DESC LIMIT 0 , 10';
 
    $hot = $GLOBALS['db']->getALL($sql);
 
    for ($i = 0; $i < 10; $i++)
     {
         $hot[$i]['short_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ?
                                     sub_str($hot[$i]['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $hot[$i]['goods_name'];/*$hot[$i]['goods_name'];*/
         $hot[$i]['url']        = build_uri('goods', array('gid' => $hot[$i]['goods_id']), $hot[$i]['goods_name']);
   $hot[$i]['name'] = $hot[$i]['goods_name'];
 
    }
     return $hot;
 }
 
这样就可以调用了。

 

 

------分隔线----------------------------
栏目列表
推荐内容