Joomla 将文章插入组件
我想在我的组件中插入一篇文章,有人有关于如何做到这一点的示例吗?
文章将从后端选择。
I would like to insert an article inside my component, does someone have an example on how to do that?
Article would be selected from backend.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在后端,您将选择文章,文章的 ID 将存储在组件参数(
config.xml
)或自定义组件参数表中的数据库中。在您的自定义组件中
#__content
表例如
要在后端进行弹出选择,请编辑组件的
config.xml
将
addpath
添加到
元素您还需要将
config
按钮添加到组件默认视图的工具栏上In the Back-End you will selected the article, the ID of article will be stored in a database in component params (
config.xml
) or custom component params table.In you custom component
#__content
table with Article IDFor example
To make pop-up select in the back end, edit your component's
config.xml
add
addpath
to the<params>
elementsYou will also need to add
config
button to the toolbar on the component's default view