You are here

function tmgmt_language_combination_field_info in Translation Management Tool 7

Implements hook_field_info().

File

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

Code

function tmgmt_language_combination_field_info() {
  $info['tmgmt_language_combination'] = array(
    'label' => t('Language combination'),
    'description' => t('Allows the definition of language combinations (e.g. "From english to german").'),
    'default_widget' => 'tmgmt_language_combination_default',
    'default_formatter' => 'tmgmt_language_combination_default',
    'settings' => array(
      'user_register_form' => 1,
    ),
  );
  return $info;
}