Lines Matching refs:currentDate

37         $this->currentDate = clone $this->startDate;
48 return clone $this->currentDate;
70 if (null === $this->currentDate) {
77 return is_null($this->until) || $this->currentDate <= $this->until;
85 $this->currentDate = clone $this->startDate;
140 while ($this->valid() && $this->currentDate < $dt) {
160 protected $currentDate; variable in Sabre\\VObject\\Recur\\RRuleIterator
314 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' hours');
323 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' days');
342 if ('23' == $this->currentDate->format('G')) {
344 … $this->currentDate = $this->currentDate->modify('+'.($this->interval - 1).' days');
347 $this->currentDate = $this->currentDate->modify('+1 hours');
349 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' days');
353 $currentMonth = $this->currentDate->format('n');
356 $currentDay = $this->currentDate->format('w');
359 $currentHour = $this->currentDate->format('G');
373 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' weeks');
391 $this->currentDate = $this->currentDate->modify('+1 hours');
393 $this->currentDate = $this->currentDate->modify('+1 days');
397 $currentDay = (int) $this->currentDate->format('w');
400 $currentHour = (int) $this->currentDate->format('G');
404 $this->currentDate = $this->currentDate->modify('+'.($this->interval - 1).' weeks');
408 if ($this->currentDate->format('w') != $firstDay) {
409 …$this->currentDate = $this->currentDate->modify('last '.$this->dayNames[$this->dayMap[$this->weekS…
422 $currentDayOfMonth = $this->currentDate->format('j');
428 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' months');
433 $tempDate = clone $this->currentDate;
436 $this->currentDate = $tempDate;
460 …$this->currentDate = new DateTimeImmutable($this->currentDate->format('Y-m-1 H:i:s'), $this->curre…
462 $this->currentDate = $this->currentDate->modify('+ '.$this->interval.' months');
470 if ($this->currentDate->getTimestamp() > 253402300799) {
471 $this->currentDate = null;
477 $this->currentDate = $this->currentDate->setDate(
478 (int) $this->currentDate->format('Y'),
479 (int) $this->currentDate->format('n'),
489 $currentMonth = $this->currentDate->format('n');
490 $currentYear = $this->currentDate->format('Y');
491 $currentDayOfMonth = $this->currentDate->format('j');
508 $nextDate = clone $this->currentDate;
512 $this->currentDate = $nextDate;
527 $currentYear = $this->currentDate->format('Y');
535 $date = clone $this->currentDate;
538 if ($date > $this->currentDate) {
545 $this->currentDate = min($checkDates);
565 $currentYear = $this->currentDate->format('Y');
572 $date = clone $this->currentDate;
580 … if ($date > $this->currentDate && in_array($date->format('N'), $dayOffsets)) {
586 $this->currentDate = min($checkDates);
597 $this->currentDate = $this->currentDate->modify('+'.$this->interval.' years');
602 $currentMonth = $this->currentDate->format('n');
603 $currentYear = $this->currentDate->format('Y');
604 $currentDayOfMonth = $this->currentDate->format('j');
636 $this->currentDate = $this->currentDate->setDate(
644 $this->currentDate = $this->currentDate->setDate(
661 $this->currentDate = $this->currentDate->setDate(
818 $startDate = clone $this->currentDate;