| 6 views.module | views_invalidate_cache() |
| 7 views.module | views_invalidate_cache() |
Invalidate the views cache, forcing a rebuild on the next grab of table data.
5 calls to views_invalidate_cache()
1 string reference to 'views_invalidate_cache'
File
- ./
views.module, line 601 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_invalidate_cache() {
cache_clear_all('*', 'cache_views', true);
}
Login or register to post comments