You are here

function views_flush_caches in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 views.module \views_flush_caches()
  2. 6.2 views.module \views_flush_caches()

Implements hook_flush_caches().

File

./views.module, line 1044
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_flush_caches() {
  return array(
    'cache_views',
    'cache_views_data',
  );
}