You are here

public function Schedule::getNextRun in Backup and Migrate 8.4

Same name and namespace in other branches
  1. 5.0.x src/Entity/Schedule.php \Drupal\backup_migrate\Entity\Schedule::getNextRun()

Get the next time this schedule should run.

Return value

int

1 call to Schedule::getNextRun()
Schedule::run in src/Entity/Schedule.php

File

src/Entity/Schedule.php, line 148

Class

Schedule
Defines the Schedule entity.

Namespace

Drupal\backup_migrate\Entity

Code

public function getNextRun() {
  $last_run_at = $this
    ->getLastRun();
  if ($last_run_at) {
    return $last_run_at + $this
      ->get('period');
  }
  return \Drupal::time()
    ->getRequestTime() - 1;
}