You are here

public function countries_import_cldr::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_cldr.inc, line 85

Class

countries_import_cldr

Code

public function propertiesProvided() {
  return array(
    'name' => t('Commonly used country names.'),
    'official_name' => t('Same data as the name field.'),
  );
}