You are here

function geoip_uninstall in GeoIP API 7.2

Implements hook_uninstall().

File

./geoip.install, line 76
Installation and update functions.

Code

function geoip_uninstall() {

  // Delete the variable with the path to the database.
  variable_del('geoip_data_file');
  variable_del('geoip_debug');
  variable_del('geoip_db_version');
}