You are here

function tmgmt_file_tmgmt_translator_plugin_info in Translation Management Tool 7

Implements hook_tmgmt_translator_plugin_info().

File

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

Code

function tmgmt_file_tmgmt_translator_plugin_info() {
  return array(
    'file' => array(
      'label' => t('File translator'),
      'description' => t('File translator that exports and imports files.'),
      'plugin controller class' => 'TMGMTFileTranslatorPluginController',
      'ui controller class' => 'TMGMTFileTranslatorUIController',
    ),
  );
}