You are here

function tmgmt_translator_plugin_info in Translation Management Tool 7

Determines all available service plugins.

Parameters

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

Return value

array An array of translator plugin definitions.

Related topics

6 calls to tmgmt_translator_plugin_info()
TMGMTTranslatorController::buildQuery in controller/tmgmt.controller.translator.inc
Support loading by name key.
tmgmt_job_settings_custom_handling in ./tmgmt.module
Determines if job settings of the translator will be handled by its plugin.
tmgmt_modules_installed in ./tmgmt.module
Implements hook_modules_installed().
tmgmt_provide_remote_languages_mappings in ./tmgmt.module
Determines if the translator plugin supports remote language mappings.
tmgmt_translator_auto_create in ./tmgmt.module
Auto creates a translator from a translator plugin definition.

... See full list

File

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

Code

function tmgmt_translator_plugin_info($plugin = NULL) {
  return _tmgmt_plugin_info('translator', $plugin);
}