You are here

function termcase_taxonomy_vocabulary_delete in Termcase 7

Same name and namespace in other branches
  1. 8 termcase.module \termcase_taxonomy_vocabulary_delete()

Implements hook_taxonomy_vocabulary_delete().

Used to cleanup the termcase variable when deleting a vocabulary.

Parameters

object $vocabulary: The vocabulary object.

File

./termcase.module, line 102
The Termcase module gives you the option to specify specific case-formatting on terms.

Code

function termcase_taxonomy_vocabulary_delete($vocabulary) {
  _termcase_vocabulary_termcase_delete($vocabulary->machine_name);
}