Determines if job settings of the translator will be handled by its plugin.
bool If job settings are to be handled by the plugin.
Overrides TranslatorInterface::hasCustomSettingsHandling
public function hasCustomSettingsHandling() {
$definition = \Drupal::service('plugin.manager.tmgmt.translator')
->getDefinition($this
->getPluginId());
if (isset($definition['job_settings_custom_handling'])) {
return $definition['job_settings_custom_handling'];
}
return FALSE;
}