You are here

public function ViewsData::clear in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/ViewsData.php \Drupal\views\ViewsData::clear()

Clears the class storage and cache.

File

core/modules/views/src/ViewsData.php, line 329

Class

ViewsData
Class to manage and lazy load cached views data.

Namespace

Drupal\views

Code

public function clear() {
  $this->storage = [];
  $this->allStorage = [];
  $this->fullyLoaded = FALSE;
  Cache::invalidateTags([
    'views_data',
  ]);
}