You are here

function hook_views_post_execute in Views (for Drupal 7) 6.2

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

This hook is called right after the execute process. The query has been executed, but the pre_render() phase has not yet happened for handlers.

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.

Related topics

1 invocation of hook_views_post_execute()
view::execute in includes/view.inc
Execute the view's query.

File

docs/docs.php, line 627
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_post_execute(&$view) {

  // example code here
}