You are here

public function TMGMTTranslator::hasCheckoutSettings in Translation Management Tool 7

Returns if the plugin has any settings for this job.

File

entity/tmgmt.entity.translator.inc, line 206

Class

TMGMTTranslator
Entity class for the tmgmt_translator entity.

Code

public function hasCheckoutSettings(TMGMTJob $job) {
  if ($controller = $this
    ->getController()) {
    return $controller
      ->hasCheckoutSettings($job);
  }
  return FALSE;
}