如何在Drupal 8中使用上下文过滤器以编程方式呈现视图?
在Drupal 7中,我通常使用以下代码。
$view = views_get_view('test_view'); //test_view is the view machine name
$view->set_display("block"); //block is the view display name
$view->set_arguments($tid); //$tid is the argument to pass
$view->pre_execute();
$view->execute();
$content = $view->render();
在Drupal 8中是否有其他方法可以实现这一目标?
您到底想作为参数传递什么?也许您可以通过View的UI实现所需的功能。
—
No Sssweat
是的,我知道我可以使用视图UI来实现这一点,但是在我的情况下这是不可能的,我只想通过一些代码来实现它。
—
桑杰