You are here

function tmgmt_source_plugin_info in Translation Management Tool 7

Determines all available source object plugins.

Parameters

$plugin: (Optional) The machine-readable name of a source plugin.

Return value

array An array of source plugin definitions.

Related topics

2 calls to tmgmt_source_plugin_info()
tmgmt_ui_forms in ui/tmgmt_ui.module
Implements hook_forms().
tmgmt_ui_source_overview_form_defaults in ui/tmgmt_ui.module
Form callback for the source overview form.

File

./tmgmt.module, line 1136
Main module file for the Translation Management module.

Code

function tmgmt_source_plugin_info($plugin = NULL) {
  return _tmgmt_plugin_info('source', $plugin);
}