function hook_views_post_render

Same name in other branches
  1. 7.x-3.x views.api.php \hook_views_post_render()

Post process any rendered data.

This can be valuable to be able to cache a view and still have some level of dynamic output. In an ideal world, the actual output will include HTML comment based tokens, and then the post process can replace those tokens.

Example usage. If it is known that the view is a node view and that the primary field will be a nid, you can do something like this:

And then in the post render, create an array with the text that should go there:

strtr($output, array('', 'output for FIELD of nid 1');

All of the cached result data will be available in $view->result, as well, so all ids used in the query should be discoverable.

This hook can be utilized by themes.

Related topics

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

File

docs/docs.php, line 714

Code

function hook_views_post_render(&$view, &$output, &$cache) {
}