function rb_views_views_post_render in Rules Bonus Pack 7
Implements of hook_views_post_render().
Parameters
$view: The view object that has been rendered.
File
- ./
rb_views.module, line 49 - Globally available functions for Rules' Views integration.
Code
function rb_views_views_post_render($view, $output, $cache) {
$view_representation = rb_views_create_view_representation($view);
rules_invoke_event('rb_views_event_view_complete', $view_representation);
rb_view_update_real_view($view, $view_representation);
}