function taxonomy_vocabulary_delete_multiple

Deletes vocabularies.

Parameters

$vids: The vocabulary ids.

1 call to taxonomy_vocabulary_delete_multiple()
taxonomy_vocabulary_delete in drupal/core/modules/taxonomy/taxonomy.module
Deletes a vocabulary.

File

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

Code

function taxonomy_vocabulary_delete_multiple(array $vids) {
  entity_delete_multiple('taxonomy_vocabulary', $vids);
}