You are here

function getlocations_mapbox_uninstall in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_mapbox/getlocations_mapbox.install \getlocations_mapbox_uninstall()

Implements hook_uninstall().

File

modules/getlocations_mapbox/getlocations_mapbox.install, line 16
getlocations_mapbox.install @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_mapbox_uninstall() {
  $query = db_delete('variable')
    ->condition('name', 'getlocations_leaflet_mapbox', 'LIKE')
    ->execute();
}