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
Namespace
Drupal\ultimate_cronCode
public function parseRule() {
if (isset($this->parsed)) {
return $this->parsed;
}
$this->parsed = $this
->rebuildRule($this
->getIntervals());
return $this->parsed;
}