Home
last modified time | relevance | path

Searched refs:allowCurrentDate (Results 1 – 1 of 1) sorted by relevance

/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
DCronExpression.php188 * @param bool $allowCurrentDate Set to TRUE to return the current date if
194 public function getNextRunDate($currentTime = 'now', $nth = 0, $allowCurrentDate = false) argument
196 return $this->getRunDate($currentTime, $nth, false, $allowCurrentDate);
204 * @param bool $allowCurrentDate Set to TRUE to return the
211 public function getPreviousRunDate($currentTime = 'now', $nth = 0, $allowCurrentDate = false) argument
213 return $this->getRunDate($currentTime, $nth, true, $allowCurrentDate);
222 * @param bool $allowCurrentDate Set to TRUE to return the
227 …ction getMultipleRunDates($total, $currentTime = 'now', $invert = false, $allowCurrentDate = false) argument
232 $matches[] = $this->getRunDate($currentTime, $i, $invert, $allowCurrentDate);
316 * @param bool $allowCurrentDate Set to TRUE to return the
[all …]