You are here

function hook_views_invalidate_cache in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 8.3 views.api.php \hook_views_invalidate_cache()

Allow modules to respond to the Views cache being invalidated.

This hook should fire whenever a view is enabled, disabled, created, updated, or deleted.

Parameters

string $cid: The cache identifier that is being cleared.

See also

views_invalidate_cache()

Related topics

1 invocation of hook_views_invalidate_cache()
views_invalidate_cache in ./views.module
Invalidate the views cache, forcing a rebuild on the next grab of table data.

File

./views.api.php, line 1272
Describe hooks provided by the Views module.

Code

function hook_views_invalidate_cache($cid) {
  cache_clear_all('views:*', 'cache_mymodule', TRUE);
}