后端 Joomla 项目视图中的删除按钮

发布于 11-27 19:43 字数 134 浏览 0 评论 0原文

我想将 Joomla 类别视图中的删除按钮放置在项目视图中,这样当用户在后端导航到该项目时,他就能够删除它。

我尝试将删除按钮的功能从类别视图移动到项目视图,但它不起作用,因为该功能需要选择一个项目。在项目视图中,应该已经选择了特定项目。

I would like to place the delete button from Joomla category view in the item view, so that when a user navigates in backend to that item he would be able to delete it.

I tried to move the function of the delete button from category view to the item view but it doesn't work since that function requires a item to be selected. In item view that particular item should already be selected.

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

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

发布评论

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

评论(1

青春如此纠结2024-12-04 19:43:20

您可能想要使用这样的内容:

if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete')) {
            JToolBarHelper::deleteList('', 'articles.delete','JTOOLBAR_EMPTY_TRASH');
        }

并在视图中添加一个隐藏的复选框字段,并在视图中使用 id 变量 [即页面 id]

You probably want to use something like this:

if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete')) {
            JToolBarHelper::deleteList('', 'articles.delete','JTOOLBAR_EMPTY_TRASH');
        }

And add a hidden checkbox field in the view with the id variable [i.e. page id] in the view

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文