1 taxonomy.module taxonomy_vocabulary_static_reset(array $ids = NULL)

Clear all static cache variables for vocabularies.

Parameters

$ids: An array of ids to reset in entity controller cache.

File

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

Code

function taxonomy_vocabulary_static_reset(array $ids = NULL) {
  entity_get_controller('taxonomy_vocabulary')->resetCache($ids);
}