1.20.x 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

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

Code

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