function smart_ip_get_region_static in Smart IP 7.2
Same name and namespace in other branches
- 8.4 smart_ip.module \smart_ip_get_region_static()
- 8.2 smart_ip.module \smart_ip_get_region_static()
- 8.3 smart_ip.module \smart_ip_get_region_static()
- 6.2 smart_ip.module \smart_ip_get_region_static()
- 6 smart_ip.module \smart_ip_get_region_static()
- 7 smart_ip.module \smart_ip_get_region_static()
Helper function for grabbing region name (FIPS).
1 call to smart_ip_get_region_static()
- smart_ip_get_location in ./
smart_ip.module - Get the geo location from the IP address
File
- ./
smart_ip.module, line 1492 - Determines country, geo location (longitude/latitude), region, city and postal code of the user, based on IP address
Code
function smart_ip_get_region_static($country_code, $region_code) {
$region =& drupal_static(__FUNCTION__);
if (!isset($region[$country_code][$region_code])) {
module_load_include('inc', 'smart_ip', 'includes/smart_ip.region_lookup');
$region[$country_code][$region_code] = smart_ip_get_region($country_code, $region_code);
}
return $region;
}