You are here

function ip_geoloc_uninstall in IP Geolocation Views & Maps 7

Same name and namespace in other branches
  1. 8 ip_geoloc.install \ip_geoloc_uninstall()

Implements hook_uninstall().

File

./ip_geoloc.install, line 154
Install and uninstall hooks for IP Geolocation Views & Maps.

Code

function ip_geoloc_uninstall() {

  // Delete all ip_geoloc_* variables at once.
  db_query("DELETE FROM {variable} WHERE name LIKE 'ip_geoloc_%%'");
}