将目的地添加到 drupal 视图字段链接

发布于 2024-10-18 17:35:11 字数 144 浏览 1 评论 0原文

如何将目的地添加到视图字段中的自定义编辑链接?

我的视图中有一个字段,我已自定义该字段以呈现为链接。如何将当前视图的页面作为目的地添加到链接中,以便当用户点击链接并填写表单时,他们将被重定向回他们所在的同一视图页面?还需要包含页码变量。

G

How can I add a desintation to a custom edit link in a view field?

I have a field in my view where I've customized the field to render as a link. How do I add the current view's page to the link as a destination, so that when the person follows the link and fills in the form, they will be redirected back the same view page they were on? Needs to include the page number variable as well.

G

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

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

发布评论

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

评论(1

四叶草在未来唯美盛开 2024-10-25 17:35:11

您可以覆盖特定字段的主题并使用 PHP 来呈现您喜欢的链接。如果您想操作视图参数,请从 $_GET['q'] 获取它们。

或者,
drupal_get_destination();将为您提供当前页面“destination=myView/with/args”以附加到链接。

You can override the theme for a particular field and use PHP to render the link however you like. Get the view arguments from $_GET['q'] if you'd like to manipulate them.

Alternatively,
drupal_get_destination(); will give you the current page as "destination=myView/with/args" to append to the link.

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