You are here

function _countries_api_iso_get_country in Country codes API 6

Same name and namespace in other branches
  1. 5 countries_api.module \_countries_api_iso_get_country()

This function was renamed to _countries_api_get_country. But to keep support for modules that uses _countries_api_iso_get_country this function should exists, but only call the renamed function.

See also

_countries_api_get_country()

File

./countries_api.module, line 185
Countries API provides an API for official and up-to-date ISO 3166 country codes (alpha-2 and alpha-3) and names (official short names).

Code

function _countries_api_iso_get_country($value, $format) {
  return _countries_api_get_country($value, $format);
}