function 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.

Parameters

object $view: The view object about to be processed.

Related topics

5 functions implement hook_views_pre_render()

Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.

DblogHooks::viewsPreRender in core/modules/dblog/src/Hook/DblogHooks.php
Implements hook_views_pre_render().
MediaLibraryHooks::viewsPreRender in core/modules/media_library/src/Hook/MediaLibraryHooks.php
Implements hook_views_pre_render().
ViewsHooks::viewsPreRender in core/modules/views/src/Hook/ViewsHooks.php
Implements hook_views_pre_render().
ViewsTestDataViewsExecutionHooks::viewsPreRender in core/modules/views/tests/modules/views_test_data/src/Hook/ViewsTestDataViewsExecutionHooks.php
Implements hook_views_pre_render().
views_test_views_pre_render in tests/views_test.module
Implements hook_views_pre_render().
1 invocation of hook_views_pre_render()
view::render in includes/view.inc
Render this view for a certain display.

File

./views.api.php, line 1107

Code

function hook_views_pre_render(&$view) {
    // Scramble the order of the rows shown on this result page.
    // Note that this could be done earlier, but not later in the view execution
    // process.
    shuffle($view->result);
}