You are here

function _termcase_vocabulary_termcase_delete in Termcase 7

Same name and namespace in other branches
  1. 6 termcase.module \_termcase_vocabulary_termcase_delete()

Helper function to delete the current termcase setting.

2 calls to _termcase_vocabulary_termcase_delete()
termcase_taxonomy_vocabulary_delete in ./termcase.module
Implements hook_taxonomy_vocabulary_delete().
termcase_uninstall in ./termcase.install
Implements hook_uninstall().

File

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

Code

function _termcase_vocabulary_termcase_delete($vocabulary_name) {
  variable_del('taxonomy_vocabulary_' . $vocabulary_name . '_termcase');
}