function hook_views_post_build
Same name in other branches
- 7.x-3.x views.api.php \hook_views_post_build()
This hook is called right after the build process. The query is now fully built, but it has not yet been run through db_rewrite_sql.
Adding output to the view can be accomplished by placing text on $view->attachment_before and $view->attachment_after.
Related topics
1 invocation of hook_views_post_build()
- view::build in includes/
view.inc - Build the query for the view.
File
-
docs/
docs.php, line 649
Code
function hook_views_post_build(&$view) {
// example code here
}