本文整理匯總了PHP中CTag::countList方法的典型用法代碼示例。如果您正苦於以下問題:PHP CTag::countList方法的具體用法?PHP CTag::countList怎麽用?PHP CTag::countList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CTag
的用法示例。
在下文中一共展示了CTag::countList方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: CTag
$tag = new CTag();
$tag->canDo();
$order = "name";
$where = array();
$where["object_class"] = " = '{$object_class}'";
if ($is_child) {
$where["parent_id"] = " IS NOT NULL";
$order = "parent_id, name";
}
if ($parent_id) {
$where["parent_id"] = " = '{$parent_id}'";
}
if ($tag_name) {
$where["name"] = " LIKE '%{$tag_name}%'";
}
/** @var CTag[] $tags */
$total = $tag->countList($where);
$tags = $tag->loadList($where, $order, "{$page}, {$limit}");
foreach ($tags as $key => $_tag) {
$_tag->countRefItems();
$_tag->loadRefParent();
}
// smarty
$smarty = new CSmartyDP();
$smarty->assign("tags", $tags);
$smarty->assign("tag", $tag);
$smarty->assign("tag_parent", $tag_parent);
$smarty->assign("page", $page);
$smarty->assign("limit", $limit);
$smarty->assign("total", $total);
$smarty->display("inc_list_tags.tpl");