You are here

function countries_i18n_field_formatter_info in Countries 8

Same name and namespace in other branches
  1. 7.2 modules/countries_i18n/countries_i18n.module \countries_i18n_field_formatter_info()

Implements hook_field_formatter_info().

File

modules/countries_i18n/countries_i18n.module, line 127
Provides translation for countries module.

Code

function countries_i18n_field_formatter_info() {
  return array(
    'country_default_i18n' => array(
      'label' => t('Default translated'),
      'field types' => array(
        'country',
      ),
    ),
    'country_official_i18n' => array(
      'label' => t('Official name translated'),
      'field types' => array(
        'country',
      ),
    ),
  );
}