function TermStorage::resetCache
Same name in other branches
- 8.9.x core/modules/taxonomy/src/TermStorage.php \Drupal\taxonomy\TermStorage::resetCache()
- 10 core/modules/taxonomy/src/TermStorage.php \Drupal\taxonomy\TermStorage::resetCache()
- 11.x core/modules/taxonomy/src/TermStorage.php \Drupal\taxonomy\TermStorage::resetCache()
Overrides ContentEntityStorageBase::resetCache
File
-
core/
modules/ taxonomy/ src/ TermStorage.php, line 81
Class
- TermStorage
- Defines a Controller class for taxonomy terms.
Namespace
Drupal\taxonomyCode
public function resetCache(array $ids = NULL) {
$this->ancestors = [];
$this->treeChildren = [];
$this->treeParents = [];
$this->treeTerms = [];
$this->trees = [];
$this->vocabularyHierarchyType = [];
parent::resetCache($ids);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.