网站地图    收藏   

主页 > 后端 > ecshop教程 >

ecshop 当前分类及其子类的HACK - ecshop

来源:自学PHP网    时间:2014-11-28 23:31 作者: 阅读:

[导读] 应该说Ecshop的分类做得还是比较好的,考虑到了大部分人的应用,能把所有的分类列表都显示出来,但还是有一些漏洞,有些网友也已经发现了 当我们点击有子分类的某个分类时,Ecshop将没必...

ecshop 当前分类及其子类的HACK

应该说Ecshop的分类做得还是比较好的,考虑到了大部分人的应用,能把所有的分类列表都显示出来,但还是有一些漏洞,有些网友也已经发现了.

当我们点击有子分类的某个分类时,Ecshop将没必要显示的分类也一起读出来了,相当于你想查你爸爸所有的孩子、孙子时,它把你爸爸所有的兄弟姐妹都一起显示出来了,这对一部分用户来说确实没必要.

我的修改只是在原有功能上添加一些功能,所以不影响原有的功能,而且也结合了模板技术,应该说定制起来还比较方便的,与大家分享:

第一步:修改/include/lib_goods.php,在第24行加入以下代码:

  1. function get_children_tree($cat_id
  2.     if ($cat_id >0 ) 
  3.        $sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$cat_id'"
  4.        //$cot = $GLOBALS['db']->getOne($sql);        
  5.        if ($GLOBALS['db']->getOne($sql)) 
  6.        { 
  7.          // 获取当前分类名及其子类 
  8.          $sql = 'SELECT a.cat_id, a.cat_name, a.sort_order AS parent_order, a.cat_id, ' . 
  9.                    'b.cat_id AS child_id, b.cat_name AS child_name, b.sort_order AS child_order ' . 
  10.             'FROM ' . $GLOBALS['ecs']->table('category') . ' AS a ' . 
  11.             'LEFT JOIN ' . $GLOBALS['ecs']->table('category') . ' AS b ON b.parent_id = a.cat_id ' . 
  12.             "WHERE a.cat_id = '$cat_id' ORDER BY parent_order ASC, a.cat_id ASC, child_order ASC"
  13.        }        
  14.        else 
  15.        { 
  16.          $sql = 'SELECT parent_id FROM ' . $GLOBALS['ecs']->table('category') . " WHERE cat_id = '$cat_id'"
  17.          $parent_id = $GLOBALS['db']->getOne($sql); 
  18.          if ($parent_id > 0) 
  19.          { 
  20.             //获取当前分类、兄弟及其父类 
  21.             $sql = 'SELECT a.cat_id, a.cat_name, b.cat_id AS child_id, b.cat_name AS child_name, b.sort_order ' . 
  22.                    'FROM ' . $GLOBALS['ecs']->table('category') . ' AS a ' . 
  23.                    'LEFT JOIN ' . $GLOBALS['ecs']->table('category') . ' AS b ON b.parent_id = a.cat_id ' . 
  24.                    "WHERE b.parent_id = '$parent_id' ORDER BY sort_order ASC"
  25.          } 
  26.          else 
  27.          { 
  28.             //获取当前分类 
  29.             $sql = 'SELECT a.cat_id, a.cat_name FROM ' 
  30.                      . $GLOBALS['ecs']->table('category') . ' AS a ' . 
  31.                      "WHERE a.cat_id = '$cat_id'"
  32.          } 
  33.        } 
  34.        
  35.        
  36.        $res = $GLOBALS['db']->getAll($sql); 
  37. $cat_arr = array(); 
  38. foreach ($res AS $row
  39.        $cat_arr[$row['cat_id']]['id'] = $row['cat_id']; 
  40.        $cat_arr[$row['cat_id']]['name'] = $row['cat_name']; 
  41.        $cat_arr[$row['cat_id']]['url']   = build_uri('category'array('cid' => $row['cat_id']), $row['cat_name']); 
  42.        if ($row['child_id'] != NULL) 
  43.        { 
  44.          $cat_arr[$row['cat_id']]['children'][$row['child_id']]['id'] = $row['child_id']; 
  45.          $cat_arr[$row['cat_id']]['children'][$row['child_id']]['name'] = $row['child_name']; 
  46.          $cat_arr[$row['cat_id']]['children'][$row['child_id']]['url']   = build_uri('category'array('cid' => $row['child_id']), $row['child_name']); 
  47.        } 
  48. return $cat_arr

这其实就是一个get_children_tree函数,更具$cat_id来得到当前分类所有的孩子.

第二步,修改/category.php,找到122行,原先的代码是:

$smarty->assign('categories',get_categories_tree($cat_id)); // 分类树

这其实是模板技术,如果你想彻底抛弃原来的分类样式,那么把get_categories_tree($cat_id)换成刚才我们自定义的函数get_children_tree($cat_id)

如果你想保留原先的分类功能,再新增自定义的分类功能,那么在122行下面再新增一行:

$smarty->assign('categories2',get_children_tree($cat_id));

如果想用不同的颜色表示出当前点击的分类和其他分类,那么还要保留当前点击的分类id,再加一行:

$smarty->assign('current_cat_id', $cat_id); //当前的id

最后一步是模板:修改category.dwt.

你要根据第二部定义的模板变量来写:到底是categories还是categories2,更具你实际情况来定,我这里是categories2:

  1. 《!--{foreach from=$categories item=cat}--》 
  2. {$cat.name|escape:html} 《!--这个就是你点击的分类,下面都是他的子类--》 
  3.     《!--{foreach from=$cat.children item=child}--》 
  4.    《a href="{$child.url}"》 
  5. 《!--{if $current_cat_id eq $child.id} 显示当前点击的分类为橙色--》《span style="color:#ff6600"》《!--{/if}--》· {$child.name|escape:html}《!--{if $current_cat_id eq $child.id}--》《/span》《!--{/if}--》《/a》 
  6.  
  7.    《!--{foreachelse}--》 
  8.    · 没有分类了! 
  9.    《!--{/foreach}--》 
  10. 《!--{/foreach}--》 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论