Example #1
0
/**
 *  获取用户的tags.
 *
 * @param int $user_id 用户ID
 *
 * @return array $arr            tags列表
 */
function get_user_tags($user_id = 0)
{
    if (empty($user_id)) {
        $GLOBALS['error_no'] = 1;
        return false;
    }
    $tags = get_tags(0, $user_id);
    if (!empty($tags)) {
        color_tag($tags);
    }
    return $tags;
}
Example #2
0
define('IN_ECS', true);
require dirname(__FILE__) . '/includes/init.php';
assign_template();
$position = assign_ur_here(0, $_LANG['tag_cloud']);
$smarty->assign('page_title', $position['title']);
// 页面标题
$smarty->assign('ur_here', $position['ur_here']);
// 当前位置
$smarty->assign('categories', get_categories_tree());
// 分类树
$smarty->assign('categories_pro', get_categories_tree_pro());
// 分类树加强版/* 周改
$smarty->assign('helps', get_shop_help());
// 网店帮助
$smarty->assign('top_goods', get_top10());
// 销售排行
$smarty->assign('promotion_info', get_promotion_info());
/* 调查 */
$vote = get_vote();
if (!empty($vote)) {
    $smarty->assign('vote_id', $vote['id']);
    $smarty->assign('vote', $vote['content']);
}
assign_dynamic('tag_cloud');
$tags = get_tags();
if (!empty($tags)) {
    include_once ROOT_PATH . 'includes/lib_clips.php';
    color_tag($tags);
}
$smarty->assign('tags', $tags);
$smarty->display('tag_cloud.dwt');