You are here

function countries_install in Countries 8

Same name and namespace in other branches
  1. 7.2 countries.install \countries_install()
  2. 7 countries.install \countries_install()

Implements hook_install().

File

./countries.install, line 107
Install file for Countries module.

Code

function countries_install() {

  // Import the data.
  countries_import_csv();
  $t = get_t();
  drupal_set_message($t('The list of countries has been updated to the latest definition from the ISO 3166. Enable the Countries Import module at any time to bulk update this list or to update this list with the Unicode Consortium CLDR that contains most countries in nearly all languages.'));
}