You are here

function _getlocations_location_taxonomize_del_variables in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_location_taxonomize/getlocations_location_taxonomize.inc \_getlocations_location_taxonomize_del_variables()

Deletes all variables set by this module

1 call to _getlocations_location_taxonomize_del_variables()
getlocations_location_taxonomize_uninstall in modules/getlocations_location_taxonomize/getlocations_location_taxonomize.install
Implements hook_uninstall().

File

modules/getlocations_location_taxonomize/getlocations_location_taxonomize.inc, line 85
getlocations_location_taxonomize.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function _getlocations_location_taxonomize_del_variables() {
  $vars = _getlocations_location_taxonomize_variables();
  foreach ($vars as $key => $value) {
    variable_del($key);
  }
}