You are here

function leaflet_mapbox_uninstall in Leaflet MapBox 7

Implements hook_uninstall().

File

./leaflet_mapbox.install, line 11
Leaflet Mapbox module install file.

Code

function leaflet_mapbox_uninstall() {
  variable_del('leaflet_mapbox_label');
  variable_del('leaflet_mapbox_description');
  variable_del('leaflet_mapbox_api_version');
  variable_del('leaflet_mapbox_code');
  variable_del('leaflet_mapbox_style_url');
  variable_del('leaflet_mapbox_token');
  variable_del('leaflet_mapbox_zoomlevel');
}