Joomla:修改类别的插件
我正在尝试为 Joomla 制作一个插件,模仿您对菜单项中的内容类别所做的所有更改。因此,添加、删除和编辑特定文章中的类别名称也会对菜单项进行相同的更改。
内容插件具有 onBeforeContentSave
和 onAfterDisplayContent
等事件,允许您处理该数据。如何对类别执行同样的操作?
I am trying to make a plugin for Joomla that mimics all the changes you do on content categories in a menu item. So adding, deleting and editing the name of a category in a specific article will also make the same changes on a menu item.
A content plugin has events such as onBeforeContentSave
and onAfterDisplayContent
that allow you to process that data. How do I do the same thing for categories?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,没有
onCategorySave
事件。我能想到的最好方法是创建一个system
插件并检查task
和option
请求变量中的save 值
和com_categories
。你的插件看起来像这样:Unfortunately, there isn't an
onCategorySave
event. The best approach I can think of would be to create asystem
plugin and check thetask
andoption
request variables for values ofsave
andcom_categories
. Your plugin would look something like this: