File: /www/wwwroot/dd.cwoyt.com/Application/Home/Widget/CategoryWidget.class.php
<?php
// +----------------------------------------------------------------------
// | OneThink [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.onethink.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: 赛脑 <2233759493@qq.com> <http://www.sn.com>
// +----------------------------------------------------------------------
namespace Home\Widget;
use Think\Action;
/**
* 分类widget
* 用于动态调用分类信息
*/
class CategoryWidget extends Action{
/* 显示指定分类的同级分类或子分类列表 */
public function lists($cate, $child = false){
$field = 'id,name,pid,title,link_id';
if($child){
$category = D('Category')->getTree($cate, $field);
$category = $category['_'];
} else {
$category = D('Category')->getSameLevel($cate, $field);
}
$this->assign('category', $category);
$this->assign('current', $cate);
$this->display('Category/lists');
}
}