0

在 Drupal7 中,我有一个显示视图标题的块:

$view = views_get_view('view_name');
print $view->human_name;

现在我想对页面内容区域中显示的所有视图执行此操作。我已经尝试了几件事,但不知道如何制作,因为我不熟悉 php。

任何帮助表示赞赏!

4

1 回答 1

0

If I understand your question, you're trying to output the title of the current page view. If that's the case, try this:

$view = views_get_page_view();
print $view->human_name;

See https://api.drupal.org/api/views/views.module/function/views_get_page_view/7

于 2013-11-13T00:32:09.567 回答