本文整理汇总了PHP中PMF_Category::expandTo方法的典型用法代码示例。如果您正苦于以下问题:PHP PMF_Category::expandTo方法的具体用法?PHP PMF_Category::expandTo怎么用?PHP PMF_Category::expandTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PMF_Category
的用法示例。
在下文中一共展示了PMF_Category::expandTo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
}
//
// Found a category ID?
//
$cat = PMF_Filter::filterInput(INPUT_GET, 'cat', FILTER_VALIDATE_INT, 0);
$cat_from_id = -1;
if (is_numeric($id) && $id > 0) {
$cat_from_id = $category->getCategoryIdFromArticle($id);
}
if ($cat_from_id != -1 && $cat == 0) {
$cat = $cat_from_id;
}
$category->transform(0);
$category->collapseAll();
if ($cat != 0) {
$category->expandTo($cat);
}
if (isset($cat) && $cat != 0 && $id == '' && isset($category->categoryName[$cat]['name'])) {
$title = ' - ' . $category->categoryName[$cat]['name'];
}
//
// Found an action request?
//
if (!isset($allowedVariables[$action])) {
$action = 'main';
}
//
// Select the template for the requested page
//
if (isset($auth)) {
$login_tpl = 'loggedin.tpl';