function hook_tmgmt_source_plugin_info_alter in Translation Management Tool 7
Same name and namespace in other branches
- 8 tmgmt.api.php \hook_tmgmt_source_plugin_info_alter()
Alter source plugins information.
Parameters
$info: The defined source plugin information.
See also
hook_tmgmt_source_plugin_info()
Related topics
1 function implements hook_tmgmt_source_plugin_info_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- tmgmt_entity_ui_tmgmt_source_plugin_info_alter in sources/
entity/ ui/ tmgmt_entity_ui.module - Implements tmgmt_entity_tmgmt_source_plugin_info_alter().
File
- ./
tmgmt.api.php, line 36 - Hooks provided by the Translation Management module.
Code
function hook_tmgmt_source_plugin_info_alter(&$info) {
$info['test_source']['description'] = t('Updated description');
}