function taxonomy_terms_static_reset

Clear all static cache variables for terms.

1 call to taxonomy_terms_static_reset()
TermTest::testNodeTermCreationAndDeletion in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php
Test term creation with a free-tagging vocabulary from the node form.

File

drupal/core/modules/taxonomy/taxonomy.module, line 511
Enables the organization of content into categories.

Code

function taxonomy_terms_static_reset() {
  Drupal::entityManager()
    ->getStorageController('taxonomy_term')
    ->resetCache();
}