function hook_views_post_execute

Act on the view immediately after the query has been executed.

At this point the query has been executed, but the pre_render() phase has not yet happened for handlers.

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

1 function implements hook_views_post_execute()

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

views_test_data_views_post_execute in drupal/core/modules/views/tests/views_test_data/views_test_data.views_execution.inc
Implements hook_views_post_execute().
1 invocation of hook_views_post_execute()
ViewExecutable::execute in drupal/core/modules/views/lib/Drupal/views/ViewExecutable.php
Execute the view's query.

File

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

Code

function hook_views_post_execute(ViewExecutable &$view) {

  // If there are more than 100 results, show a message that encourages the user
  // to change the filter settings.
  // (This action could be performed later in the execution process, but not
  // earlier.)
  if ($view->total_rows > 100) {
    drupal_set_message(t('You have more than 100 hits. Use the filter settings to narrow down your list.'));
  }
}