public function Job::isContinuousActive

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 627

Class

Job
Entity class for the tmgmt_job entity.

Namespace

Drupal\tmgmt\Entity

Code

public function isContinuousActive() {
  return $this
    ->isState(static::STATE_CONTINUOUS);
}