Lines Matching refs:currentDate

37         $this->currentDate = clone $this->startDate;
46 return clone $this->currentDate;
73 return is_null($this->until) || $this->currentDate <= $this->until;
84 $this->currentDate = clone $this->startDate;
148 while ($this->valid() && $this->currentDate < $dt) {
169 protected $currentDate; variable in Sabre\\VObject\\Recur\\RRuleIterator
325 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' hours');
337 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' days');
355 if ($this->currentDate->format('G') == '23') {
357 … $this->currentDate = $this->currentDate->modify('+' . $this->interval - 1 . ' days');
360 $this->currentDate = $this->currentDate->modify('+1 hours');
363 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' days');
368 $currentMonth = $this->currentDate->format('n');
371 $currentDay = $this->currentDate->format('w');
374 $currentHour = $this->currentDate->format('G');
392 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' weeks');
410 $this->currentDate = $this->currentDate->modify('+1 hours');
412 $this->currentDate = $this->currentDate->modify('+1 days');
416 $currentDay = (int)$this->currentDate->format('w');
419 $currentHour = (int)$this->currentDate->format('G');
423 … $this->currentDate = $this->currentDate->modify('+' . $this->interval - 1 . ' weeks');
427 if ($this->currentDate->format('w') != $firstDay) {
428 …$this->currentDate = $this->currentDate->modify('last ' . $this->dayNames[$this->dayMap[$this->wee…
443 $currentDayOfMonth = $this->currentDate->format('j');
450 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' months');
455 $tempDate = clone $this->currentDate;
458 $this->currentDate = $tempDate;
484 …$this->currentDate = new DateTimeImmutable($this->currentDate->format('Y-m-1 H:i:s'), $this->curre…
486 $this->currentDate = $this->currentDate->modify('+ ' . $this->interval . ' months');
494 $this->currentDate = $this->currentDate->setDate(
495 (int)$this->currentDate->format('Y'),
496 (int)$this->currentDate->format('n'),
509 $currentMonth = $this->currentDate->format('n');
510 $currentYear = $this->currentDate->format('Y');
511 $currentDayOfMonth = $this->currentDate->format('j');
530 $nextDate = clone $this->currentDate;
534 $this->currentDate = $nextDate;
550 $currentYear = $this->currentDate->format('Y');
558 $date = clone $this->currentDate;
561 if ($date > $this->currentDate) {
568 $this->currentDate = min($checkDates);
587 $currentYear = $this->currentDate->format('Y');
594 $date = clone $this->currentDate;
602 … if ($date > $this->currentDate && in_array($date->format('N'), $dayOffsets)) {
608 $this->currentDate = min($checkDates);
618 $this->currentDate = $this->currentDate->modify('+' . $this->interval . ' years');
623 $currentMonth = $this->currentDate->format('n');
624 $currentYear = $this->currentDate->format('Y');
625 $currentDayOfMonth = $this->currentDate->format('j');
662 $this->currentDate = $this->currentDate->setDate(
671 $this->currentDate = $this->currentDate->setDate(
690 $this->currentDate = $this->currentDate->setDate(
857 $startDate = clone $this->currentDate;