function hook_views_invalidate_cache

Allow modules to respond to the invalidation of the Views cache.

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

See also

views_invalidate_cache()

Related topics

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

File

drupal/core/modules/views/views.api.php, line 629
Describes hooks and plugins provided by the Views module.

Code

function hook_views_invalidate_cache() {
  cache('mymodule')
    ->invalidateTags(array(
    'views' => TRUE,
  ));
}