Joomla 1.7自定义工具栏按钮使用

发布于 2024-12-08 07:11:47 字数 468 浏览 1 评论 0原文

我使用以下代码在组件的后端工具栏中添加了一个自定义按钮:

JToolBarHelper::custom('libri.details','details.png','details.png','TOOLBAR_DETAILS',true);

此按钮需要管理员检查表中列出的条目之一。 如果您不明白我在说什么,您可以在此处查看屏幕截图关于 该按钮名为“Dettagli”(目前没有图像)。

我遇到了一些问题:

  • 如何将选中条目的 id 附加到按钮生成的地址?
  • 我已将详细信息()方法放入控制器中,它调用模型的实例及其内部的方法。模型的方法将查询结果返回给控制器。我该如何告诉控制器将该结果传递给名为 libro 的视图?

I've added a custom button into my component's backend toolbar with this code:

JToolBarHelper::custom('libri.details','details.png','details.png','TOOLBAR_DETAILS',true);

This button needs that the admin checks one of the entries listed in the table.
You can see a screenshot here if you haven't understood what I'm talking about
The button is the one called "Dettagli" (no image at the moment).

I'm having some problems:

  • How do I append the checked entry's id to the address generated from the button?
  • I've put a details() method into the controller, it calls an instance of the model and a method inside it. The model's method returns to the controller the result of a query. How do I say to the controller to pass that result to a view called libro?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声静候 2024-12-15 07:11:47
  1. 页面中的所有信息都将通过 POST 发送到 Joomla 控制器(在本例中为 libri)。在控制器中,您可以使用 JRequest::getVar('varNameHere'); 来检索它。
  2. $this->setRedirect($urlOfView, $someStatusMessage)
  1. All information in the page will be sent through POST to the Joomla controller (in this case, libri). In your controller, you can use JRequest::getVar('varNameHere'); to retrieve it.
  2. $this->setRedirect($urlOfView, $someStatusMessage)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文