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에서이를 달성 할 수있는 다른 방법이 있습니까?
정확히 무엇을 논쟁으로 전달하고 싶습니까? 아마도 뷰의 UI를 통해 원하는 것을 얻을 수 있습니다.
—
No Sssweat
예,보기 UI를 사용하여 달성 할 수는 있지만 제 경우에는 불가능합니다. 일부 코드로만 달성하고 싶습니다.
—
Sanjay