public function UltimateCronJob::getProgress in Ultimate Cron 7.2
Get job progress.
Return value
float The progress of this job.
1 call to UltimateCronJob::getProgress()
- UltimateCronJob::formatProgress in ./
ultimate_cron.job.inc - Format progress.
File
- ./
ultimate_cron.job.inc, line 625 - Job class for Ultimate Cron.
Class
- UltimateCronJob
- Class for handling cron jobs.
Code
public function getProgress() {
return $this
->getPlugin('launcher')
->getProgress($this);
}