获取 Joomla!来自 URL 的类别
如何读取某个 URI 所属的部分?
我想增强 mod_breadcrumb 以将部分和类别放入 HTML 中。 JApplication->getPathway() 返回一个 JPathway,它基本上保存一个组合名称和 URL 的关联数组(如 $list[]->name 和 $list[]->link)。我认为,应该可以从链接获取部分和类别,但不知道如何。
一个起点可能是解析为 JURI-Object,但从那里我不知道如何进一步发展。有什么想法吗?
How can I read the section a certain URI belongs to?
I want to enhance the mod_breadcrumb to put section and category into the HTML. JApplication->getPathway() returns a JPathway which basically holds an assiciative array combining a name and an URL (as $list[]->name and $list[]->link). I think, it should be possible to get the section and category from a link, but don't know how.
A starting point could be the parsing into JURI-Object, but from there I don't know how get get further. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常简单......
我假设您想添加文章的类别和部分,而不是您的自定义组件。
检查请求的当前 URL 是否用于文章。如果是文章,你知道文章ID,使用这个文章Id去数据库从
#__content
获取catid
,使用这个cat_id
转到#__categories
并获取section
(这是部分id),转到#__sections
以获取正确的部分名称。所有这些都可以在 1 个 sql 语句中完成。或者,如果您知道面包屑项目的 URL。你可以解析它并获取IDS。这里的技巧是不要通过
JFactory::getURI()
获取默认 URI 对象,因为事情会变得很难看,请使用JFactory::getURI('YOU_URI_NAME')
。Pretty straight forward...
I assume you want to add category and section for the article and not your custom component.
Check if requested current URL is for article. If it is for article you know the article ID, use this article Id to go database and get
catid
from#__content
, Use thiscat_id
to go to#__categories
and getsection
(this is section id), go to#__sections
to get the proper section name. All this can be done in 1 sql statement.Alternatively, if you know the URL from the breadcrumb item. You can parse it and get IDS. The trick here is not to get the default URI object by
JFactory::getURI()
because things will get ugly, useJFactory::getURI('YOU_URI_NAME')
.