public function Job::isContinuousActive in Translation Management Tool 8
Returns whether the state of this job is 'continuous'.
Return value
bool TRUE if the state is 'continuous', FALSE otherwise.
Overrides JobInterface::isContinuousActive
File
- src/
Entity/ Job.php, line 621
Class
- Job
- Entity class for the tmgmt_job entity.
Namespace
Drupal\tmgmt\EntityCode
public function isContinuousActive() {
return $this
->isState(static::STATE_CONTINUOUS);
}