1 taxonomy.entity.inc public TaxonomyTermController::resetCache(array $ids = NULL)

Implements EntityControllerInterface::resetCache().

Overrides DefaultEntityController::resetCache

File

core/modules/taxonomy/taxonomy.entity.inc, line 294
Entity classes and controllers for Taxonomy module.

Class

TaxonomyTermController
Controller class for taxonomy terms.

Code

public function resetCache(array $ids = NULL) {
  backdrop_static_reset('taxonomy_term_count_nodes');
  backdrop_static_reset('taxonomy_get_tree');
  backdrop_static_reset('taxonomy_get_tree:parents');
  backdrop_static_reset('taxonomy_get_tree:terms');
  backdrop_static_reset('taxonomy_term_load_parents');
  backdrop_static_reset('taxonomy_term_load_parents_all');
  backdrop_static_reset('taxonomy_term_load_children');
  parent::resetCache($ids);
}