You are here

function views_field_delete_instance in Views (for Drupal 7) 8.3

Same name and namespace in other branches
  1. 7.3 views.module \views_field_delete_instance()

Implements hook_field_delete_instance.

File

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

Code

function views_field_delete_instance($instance) {
  cache('views_info')
    ->flush();
  cache('views_results')
    ->flush();
}