You are here

function hook_views_pre_render in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 8.3 views.api.php \hook_views_pre_render()
  2. 6.2 docs/docs.php \hook_views_pre_render()
  3. 7.3 views.api.php \hook_views_pre_render()

This hook is called right before the render process. The query has been executed, and the pre_render() phase has already happened for handlers, so all data should be available.

Adding output to the view can be accomplished by placing text on $view->attachment_before and $view->attachment_after. Altering the content can be achieved by editing the items of $view->result.

This hook can be utilized by themes.

Related topics

1 invocation of hook_views_pre_render()
view::render in includes/view.inc
Render this view for a certain display.

File

docs/docs.php, line 688
This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.

Code

function hook_views_pre_render(&$view) {

  // example code here
}