Returns if the plugin has any settings for this job.
\Drupal\tmgmt\JobInterface $job: The Job entity that should be translated.
Overrides TranslatorInterface::hasCheckoutSettings
public function hasCheckoutSettings(JobInterface $job) {
if ($plugin = $this
->getPlugin()) {
return $plugin
->hasCheckoutSettings($job);
}
return FALSE;
}