You are here

public function countries_import_core::propertiesProvided in Countries 8

Returns a list of properties that this provider handles.

Return value

array An array of properties keyed by the entity property and a description of the data used to construct this.

Overrides countries_import_manager::propertiesProvided

File

modules/countries_import/plugins/countries_import_core.inc, line 9

Class

countries_import_core

Code

public function propertiesProvided() {
  return array(
    'name' => t('ISO 3166-1 Name'),
    'official_name' => t('ISO 3166-1 Offical Name'),
    'iso2' => t('ISO 3166-1 alpha-2 code'),
    'iso3' => t('ISO 3166-1 alpha-3 code'),
    'numcode' => t('ISO 3166-1 numeric-3 code'),
    'continent' => t('Continent information taken from various sources'),
    'enabled' => t('Status as defined by the ISO 3166-1. This may miss some countries that are not yet widely recognized by UN member states.'),
  );
}