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 function implements hook_views_invalidate_cache()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

views_test_data_views_invalidate_cache in drupal/core/modules/views/tests/views_test_data/views_test_data.views.inc
Implements hook_views_invalidate_cache().
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 608
Describes hooks and plugins provided by the Views module.

Code

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