在Joomla模板开发中,如果内容分类比较多,不太想将所有的子分类都在菜单中展示,但是又希望父类菜单先展示所有子类的文章,在Joomla下该如何处理呢?本文结合自己在Joomla开发中的一些实践经验,介绍如何实现。
我们在Help.php文件中新增函数,获取分类下所有子分类的ID
/**
* @description 获取所有子分类 ID(包括多层子类)
* @param int $categoryId 分类ID
*/
static public function getChildrenCategoryIds($categoryId)
{
// 获取所有已发布的category
$categories = Categories::getInstance('content', array("access" => false, "published" => 1));
$currentNodes = $categories->get($categoryId);
$categoryIds = [];
if ($currentNodes) {
$children = $currentNodes->getChildren(true);
foreach ($children as $child) {
$categoryIds[] = $child->id;
}
// 包含当前分类 ID
$categoryIds[] = $categoryId;
}
if (empty($categoryIds)) {
}
return $categoryIds;
}
html/com_content/category下的default.php文件或者其他文件中,添加查询文章的逻辑:
$categoryIds = TplBeginnerHelper::getChildrenCategoryIds($category->id);
// 构建查询以获取所有文章
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true);
$query->select('a.*','u.username','u.name')
->from($db->quoteName('#__content', 'a'))
->join('INNER', $db->quoteName('#__users', 'u') . ' ON (' . $db->quoteName('a.created_by') . ' = ' . $db->quoteName('u.id') . ')')
->where($db->quoteName('a.catid') . ' IN (' . implode(',', $categoryIds) . ')')
->where($db->quoteName('a.state') . ' = 1') // 仅获取已发布文章
->order($db->quoteName('a.created') . ' DESC');
// 获取分页参数
$limit = $app->input->getInt('limit', $params->get('display_num', 10));
$limitstart = $app->input->getInt('limitstart', 0);
// 设置查询限制
$query->setLimit($limit, $limitstart);
// 执行查询
$db->setQuery($query);
try {
$articles = $db->loadObjectList();
} catch (RuntimeException $e) {
Log::add("查询错误: " . $categoryId, Log::ERROR, $e->getMessage());
}
其中$articles 则为文章列表。