You are here

function tmgmt_language_combination_field_formatter_info in Translation Management Tool 7

Implements hook_field_formatter_info().

File

translators/tmgmt_local/skills/tmgmt_language_combination.module, line 147

Code

function tmgmt_language_combination_field_formatter_info() {
  $info['tmgmt_language_combination_default'] = array(
    'label' => t('Default'),
    'description' => t('Default formatter for displaying the translation combination of a user.'),
    'field types' => array(
      'tmgmt_language_combination',
    ),
  );
  $info['tmgmt_language_combination_table'] = array(
    'label' => t('Table'),
    'description' => t('Formatter for displaying the translation combination of a user in a table.'),
    'field types' => array(
      'tmgmt_language_combination',
    ),
  );
  return $info;
}