您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop首页怎么获取某个商品分类下的商品品牌列表
李具匡2023-12-11 17:32:23ecshop商城教程已有人查阅
导读获得某个分类下的品牌列表function get_cat_brands($cat = 0, $app = 'category')
<?php
/**
* 获得某个分类下的品牌列表
*
* @access public
* @param int $cat
* @return array
*/
function get_cat_brands($cat = 0, $app = 'category')
{
$children = ($cat > 0) ? ' AND ' . get_children($cat) : '';
$sql = "SELECT b.brand_id, b.brand_name, b.brand_logo, COUNT(g.goods_id) AS goods_num, IF(b.brand_logo > '', '1', '0') AS tag ".
"FROM " . $GLOBALS['ecs']->table('brand') . "AS b, ".
$GLOBALS['ecs']->table('goods') . " AS g ".
"WHERE g.brand_id = b.brand_id $children " .
"GROUP BY b.brand_id HAVING goods_num > 0 ORDER BY tag DESC, b.sort_order ASC";
$row = $GLOBALS['db']->getAll($sql);
foreach ($row AS $key => $val)
{
$row[$key]['url'] = build_uri($app, array('cid' => $cat, 'bid' => $val['brand_id']), $val['brand_name']);
}
return $row;
}
?>
模板:
<!--{foreach from=get_cat_brands($this->_var['cat']['id']) item=brandCat}-->
<li><a href="{$brandCat.url}"><img src="data/brandlogo/{$brandCat.brand_logo}" title="{$brandCat.brand_name}" width="106" height="36"><span>{$brandCat.brand_name}</span></a></li>
<!--{/foreach}-->
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop商品详细页怎么获取所在商品的分类ID及NAME
问:怎么在ECSHOP的商品详细页面上获取该商品的 分类ID及NAME?答:打开 goods.php 文件,找到 -
ecshop文章列表页调用文章描述信息的方法
注意:这里所说的描述信息,指的是在ECSHOP后台发布文章时,填写的那个“网页描述”信息。 -
ecshop后台非可编辑区域怎么修改为可编辑区域
我们在ECSHOP后台设置ECSHOP模板模块的时候,会看到有些模块显示“非可编辑区域”而无法设置,通过简单几步,就可以把“非可编辑区域”改为“可编辑区域” -
ecshop后台通过email搜索用户的功能开发实例
给ecshop后台添加通过email搜索用户的功能,先找到ecshop下两个文件admin/users.php以及admin/templates/users_list.htm
留言与评论 (共有 条评论) |