跳转到主要内容
ThomasHuang 提交于 12 September 2012

原文地址:http://drupal.org/node/438370

我有一个在views模块中添加到Advance Help的请求http://drupal.org/node/495626

在一个views输出之前我们可以用这个函数来修改它,hook_views_pre_render(&$view). 此处查看views的API http://api.drupal.org/api/views/views.api.php/group/views_hooks/7 .

要使用这个函数,我们必须添加这个函数到module 文件

<?php function modulename_views_pre_render(&$view) { } ?>

确保你只是修改你想要改的view,我们将要在这个函数的顶部添加一个条件,去检查这是否是我们想要改的view 假设要改的view名字叫 "foobar".代码就这么写.

<?php function modulename_views_pre_render(&$view) { if($view->name == "foobar") { //Add code to manipulate the view } } ?>

这里有一个修改view的页脚例子,点击查看 http://drupal.org/node/422264#comment-1466510