Joomla:如何显示非 MVC 组件的菜单特定参数
我构建了一个 Joomla 1.5 组件,非 MVC,并且它工作正常,所以我不想将其更改为 MVC。我需要有一些菜单项指向我的组件,每个菜单项将不同的参数传递给组件。 http://docs.joomla.org/Component_parameters 中的“菜单项特定参数”部分非常漂亮很清楚,只是教程定位了包含假设 MVC 结构的参数的 XML 文件。
如果我的组件不遵循 MVC,我应该将该 XML 文件放在哪里,它的名称应该是什么,以便 Joomla 可以找到它并在菜单创建屏幕中显示参数?
谢谢
I built a Joomla 1.5 component, non-MVC, and it's working fine, so I'd rather not change it to MVC. I need to have some menu items point to my component, each menu item passing different parameters to the component. The 'Menu item specific parameters' section in http://docs.joomla.org/Component_parameters is pretty clear, except that the tutorial locates the XML file that contains the parameters assuming an MVC structure.
If my component doesn't follow MVC, where should I put that XML file, and what should be its name, so that Joomla can find it and show the parameters in the menu creation screen?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将这些参数存储在数据库表中。有一个参数列,您可以在其中为每个菜单元素定义所需的任何参数。这在同一个 joomla doc 您在答案中链接到的...
You can store those parameters in the database table. There is a parameter column where you can define any parameters you want for each menu element. This is explained in the same joomla doc that you link to in your answer...
我最终换成了MVC。 :|
I ended up changing to MVC. :|