function hook_tmgmt_source_plugin_info in Translation Management Tool 7
Provide information about source plugins.
See also
TMGMTTestSourcePluginController
Related topics
5 functions implement hook_tmgmt_source_plugin_info()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- tmgmt_entity_tmgmt_source_plugin_info in sources/
entity/ tmgmt_entity.module - Implements hook_tmgmt_source_plugin_info().
- tmgmt_i18n_string_tmgmt_source_plugin_info in sources/
i18n_string/ tmgmt_i18n_string.module - Implements hook_tmgmt_source_plugin_info().
- tmgmt_locale_tmgmt_source_plugin_info in sources/
locale/ tmgmt_locale.module - Implements hook_tmgmt_source_plugin_info().
- tmgmt_node_tmgmt_source_plugin_info in sources/
node/ tmgmt_node.module - Implements hook_tmgmt_source_plugin_info().
- tmgmt_test_tmgmt_source_plugin_info in tests/
tmgmt_test.module - Implements hook_tmgmt_source_plugin_info().
File
- ./
tmgmt.api.php, line 18 - Hooks provided by the Translation Management module.
Code
function hook_tmgmt_source_plugin_info() {
return array(
'test_source' => array(
'label' => t('Test source'),
'description' => t('Simple source for testing purposes.'),
'controller class' => 'TMGMTTestSourcePluginController',
),
);
}