You are here

function device_geolocation_uninstall in Smart IP 6

Same name and namespace in other branches
  1. 6.2 modules/device_geolocation/device_geolocation.install \device_geolocation_uninstall()
  2. 7.2 modules/device_geolocation/device_geolocation.install \device_geolocation_uninstall()
  3. 7 modules/device_geolocation/device_geolocation.install \device_geolocation_uninstall()

Implements hook_uninstall().

Removes all variables inserted into the database by this module.

File

modules/device_geolocation/device_geolocation.install, line 15
Installation callback for Device Geolocation.

Code

function device_geolocation_uninstall() {
  variable_del('device_geolocation_ajax_check');
  variable_del('device_geolocation_allowed_pages');
  variable_del('device_geolocation_check_frequency');
}