You are here

function tmgmt_google_tmgmt_translator_plugin_info in TMGMT Translator Google 7

Implements hook_tmgmt_translator_plugin_info().

File

./tmgmt_google.module, line 11
Main bootstrap file of the tmgmt_google module.

Code

function tmgmt_google_tmgmt_translator_plugin_info() {
  return array(
    'google' => array(
      'label' => t('Google translator'),
      'description' => t('Google Translator service.'),
      'plugin controller class' => 'TMGMTGoogleTranslatorPluginController',
      'ui controller class' => 'TMGMTGoogleTranslatorUIController',
      'default settings' => array(
        'api_key' => '',
      ),
    ),
  );
}