You are here

function geoip_continent_code in GeoIP API 7.2

Returns the continent code for a given IP.

Parameters

string $ip: The ip to resolve, defaults to the current users ip.

Return value

string|FALSE Country code or FALSE on error. Code is always upper case.

Related topics

5 calls to geoip_continent_code()
geoip_admin_settings in ./geoip.admin.inc
Menu callback and form builder for admin/settings/geoip.
geoip_ctools_plugin_region_ctools_access_check in plugins/access/continent.inc
Check for access.
geoip_rules_condition_continent_compare in ./geoip.rules.inc
Checks if the detected continent matches to one in the list.
geoip_tokens in ./geoip.tokens.inc
Implements hook_tokens().
geoip_views_query_substitutions in ./geoip.module
Implements hook_views_query_substitutions().

File

./geoip.module, line 230
API for using the MaxMind GeoLite Country database.

Code

function geoip_continent_code($ip = NULL) {
  $ip = $ip ? $ip : geoip_ip_address();
  if ($gi = geoip_instance()) {
    return $gi
      ->continentCode($ip);
  }
  return FALSE;
}