public function TMGMTFileTranslatorPluginController::defaultSettings in Translation Management Tool 7
Defines default settings.
Return value
array An array of default settings.
Overrides TMGMTDefaultTranslatorPluginController::defaultSettings
File
- translators/
file/ tmgmt_file.plugin.inc, line 48 - Provides the file translator plugin controller.
Class
- TMGMTFileTranslatorPluginController
- File translator plugin controller.
Code
public function defaultSettings() {
return array(
'export_format' => 'xlf',
'allow_override' => TRUE,
'scheme' => 'public',
// Making this setting TRUE by default is more appropriate, however we
// need to make it FALSE due to backwards compatibility.
'xliff_processing' => FALSE,
'xliff_cdata' => FALSE,
);
}