You are here

function location_taxonomize_disassociate in Location Taxonomize 7.2

Same name and namespace in other branches
  1. 7 location_taxonomize.inc \location_taxonomize_disassociate()

Disassociates the vocabulary - unlinks the current Location Vocabulary from the module

1 string reference to 'location_taxonomize_disassociate'
location_taxonomize_form in ./location_taxonomize.admin.inc
Location Taxonomize administration form

File

./location_taxonomize.inc, line 139
Some useful functions for Location taxonomize

Code

function location_taxonomize_disassociate($form, $form_state) {

  // unset the vid variable
  variable_del('location_taxonomize_vid');
  drupal_set_message(t('Location Taxonomy successfully disassociated'));
}