Same name and namespace in other branches
  1. 8.9.x core/modules/views/views.api.php \hook_views_pre_render()
  2. 9 core/modules/views/views.api.php \hook_views_pre_render()

Act on the view immediately before rendering it.

At this point the query has been executed, and the preRender() phase has already happened for handlers, so all data should be available. This hook can be used by themes.

Output can be added to the view by setting $view->attachment_before and $view->attachment_after.

Parameters

\Drupal\views\ViewExecutable $view: The view object about to be processed.

See also

\Drupal\views\ViewExecutable

Related topics

7 functions implement hook_views_pre_render()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

claro_views_pre_render in core/themes/claro/claro.theme
Implements hook_views_pre_render().
dblog_views_pre_render in core/modules/dblog/dblog.module
Implements hook_views_pre_render().
media_library_views_pre_render in core/modules/media_library/media_library.module
Implements hook_views_pre_render().
test_basetheme_views_pre_render in core/modules/system/tests/themes/test_basetheme/test_basetheme.theme
Implements hook_views_pre_render().
test_subtheme_views_pre_render in core/modules/system/tests/themes/test_subtheme/test_subtheme.theme
Implements hook_views_pre_render().

... See full list

File

core/modules/views/views.api.php, line 836
Describes hooks and plugins provided by the Views module.

Code

function hook_views_pre_render(ViewExecutable $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);
}