drupal view如何执行diplay而不转发
所以我有以下代码:
$name = 'somename';
$display_id = 'someid';
if ($view = views_get_view($name)) {
return $view->execute_display($display_id);
}
如果我这样做,Drupal将重定向到与显示id对应的实际视图页面...
有没有一种方法可以使Drupal返回由生成的HTML而不是重定向到实际页面$view->execute_display()
以便我可以回显它而不是进行完全重定向?
So I have the following code:
$name = 'somename';
$display_id = 'someid';
if ($view = views_get_view($name)) {
return $view->execute_display($display_id);
}
If I do this, Drupal would redirect to the actual view page corresponding to the display id...
Is there a way so that instead of redirecting to the actual page, Drupal would instead return the HTML generated by the $view->execute_display()
so that I can echo it rather than do a full redirection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$display_id 是一个可选参数。
$args 是一个可选参数,如果使用,您只需传入一个包含按顺序排列的值的数组。
$display_id is an optional argument.
$args is an optional argument, and if used, you just pass in an array with the values in order.