You are here

public function UltimateCronJob::isLocked in Ultimate Cron 7.2

Get locked state of job.

2 calls to UltimateCronJob::isLocked()
UltimateCronJob::isScheduled in ./ultimate_cron.job.inc
Check job schedule.
UltimateCronJob::unlock in ./ultimate_cron.job.inc
Unlock job.

File

./ultimate_cron.job.inc, line 448
Job class for Ultimate Cron.

Class

UltimateCronJob
Class for handling cron jobs.

Code

public function isLocked() {
  return $this
    ->getPlugin('launcher')
    ->isLocked($this);
}