You are here

function d8cache_views_pre_render in Drupal 8 Cache Backport 7

Implements hook_views_pre_render().

File

includes/views.inc, line 11
Views hooks for the D8 caching system backport.

Code

function d8cache_views_pre_render(&$view) {
  $tags = _d8cache_views_get_cache_tags($view);
  drupal_add_cache_tags($tags);
}