function tmgmt_test_tmgmt_source_plugin_info in Translation Management Tool 7
Implements hook_tmgmt_source_plugin_info().
File
- tests/
tmgmt_test.module, line 28 - Module file of the translation management test module.
Code
function tmgmt_test_tmgmt_source_plugin_info() {
return array(
'test_source' => array(
'label' => t('Test source'),
'description' => t('Simple source for testing purposes.'),
'plugin controller class' => 'TMGMTTestSourcePluginController',
),
'test_html_source' => array(
'label' => t('Test html source'),
'description' => t('HTML source for testing purposes.'),
'plugin controller class' => 'TMGMTTestHTMLSourcePluginController',
),
);
}