You are here

public function CronRule::parseRule in Ultimate Cron 8.2

Parse rule. Run through parser expanding expression, and recombine into crontab syntax.

File

src/CronRule.php, line 260

Class

CronRule

Namespace

Drupal\ultimate_cron

Code

public function parseRule() {
  if (isset($this->parsed)) {
    return $this->parsed;
  }
  $this->parsed = $this
    ->rebuildRule($this
    ->getIntervals());
  return $this->parsed;
}