function hook_views_post_execute
This hook is called right after the execute process.
The query has been executed, but the pre_render() phase has not yet happened for handlers.
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.
Parameters
object $view: The view object about to be processed.
Related topics
3 functions implement hook_views_post_execute()
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.
- ContentModerationHooks::viewsPostExecute in core/
modules/ content_moderation/ src/ Hook/ ContentModerationHooks.php  - Implements hook_views_post_execute().
 - RestTestViewsHooks::viewsPostExecute in core/
modules/ rest/ tests/ modules/ rest_test_views/ src/ Hook/ RestTestViewsHooks.php  - Implements hook_views_post_execute().
 - ViewsTestDataViewsExecutionHooks::viewsPostExecute in core/
modules/ views/ tests/ modules/ views_test_data/ src/ Hook/ ViewsTestDataViewsExecutionHooks.php  - Implements hook_views_post_execute().
 
1 invocation of hook_views_post_execute()
- view::execute in includes/
view.inc  - Execute the view's query.
 
File
- 
              ./
views.api.php, line 1082  
Code
function hook_views_post_execute(&$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.'));
  }
}