function taxonomy_vocabulary_static_reset

Clear all static cache variables for vocabularies.

Parameters

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

File

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

Code

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