You are here

geoip.install in GeoIP API 6

Same filename and directory in other branches
  1. 8.2 geoip.install
  2. 7.2 geoip.install
  3. 7 geoip.install

Installation and update functions.

File

geoip.install
View source
<?php

/**
 * @file
 * Installation and update functions.
 */

/**
 * We're changing the default path. If it's been working for them make sure
 * it is set and not relying on the default value.
 */
function geoip_update_6000() {
  $previous_path = variable_get('geoip_data_file', drupal_get_path('module', 'geoip') . '/data/GeoIP.dat');
  if (isset($previous_path) && file_exists($previous_path)) {
    variable_set('geoip_data_file', $previous_path);
  }
  return array();
}

Functions

Namesort descending Description
geoip_update_6000 We're changing the default path. If it's been working for them make sure it is set and not relying on the default value.