Ecshop模板网
首页 > ecshop教程 > ecshop经验分享 > 获取点击人气排行榜
文章详情

获取点击人气排行榜

ecshop模板网 / 2009-12-04

两部分。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 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;
}

下一篇: 屏蔽ecshop云提示no_license 上一篇: 去除ecshop后台最新版本提示信息
 用户评论(共 0 条评论)
  • 暂时还没有任何用户评论
用户名: 匿名用户 E-mail:
当前心情:
评论内容:
验证码: captcha
返回顶部 返回首页
 
QQ在线咨询
售前电话热线
#
售前QQ客服