You are here

function tmgmt_file_tmgmt_file_format_plugin_info in Translation Management Tool 7

Implements hook_tmgmt_file_format_info().

File

translators/file/tmgmt_file.module, line 118
Module file of the translation management test module.

Code

function tmgmt_file_tmgmt_file_format_plugin_info() {
  return array(
    'xlf' => array(
      'label' => t('XLIFF'),
      'plugin controller class' => 'TMGMTFileFormatXLIFF',
    ),
    'html' => array(
      'label' => t('HTML'),
      'plugin controller class' => 'TMGMTFileFormatHTML',
    ),
  );
}