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;
96 $previousStamp = $this->currentDate->getTimeStamp();
149 while($this->valid() && $this->currentDate < $dt ) {
170 protected $currentDate; variable in Sabre\\VObject\\Recur\\RRuleIterator
326 $this->currentDate->modify('+' . $this->interval . ' hours');
338 $this->currentDate->modify('+' . $this->interval . ' days');
356 if ($this->currentDate->format('G') == '23') {
358 $this->currentDate->modify('+' . $this->interval-1 . ' days');
361 $this->currentDate->modify('+1 hours');
364 $this->currentDate->modify('+' . $this->interval . ' days');
369 $currentMonth = $this->currentDate->format('n');
372 $currentDay = $this->currentDate->format('w');
375 $currentHour = $this->currentDate->format('G');
393 $this->currentDate->modify('+' . $this->interval . ' weeks');
411 $this->currentDate->modify('+1 hours');
413 $this->currentDate->modify('+1 days');
417 $currentDay = (int) $this->currentDate->format('w');
420 $currentHour = (int) $this->currentDate->format('G');
424 $this->currentDate->modify('+' . $this->interval-1 . ' weeks');
428 if($this->currentDate->format('w') != $firstDay) {
429 … $this->currentDate->modify('last ' . $this->dayNames[$this->dayMap[$this->weekStart]]);
444 $currentDayOfMonth = $this->currentDate->format('j');
451 $this->currentDate->modify('+' . $this->interval . ' months');
456 $tempDate = clone $this->currentDate;
459 $this->currentDate = $tempDate;
485 …$this->currentDate = new \DateTime($this->currentDate->format('Y-m-1 H:i:s'), $this->currentDate->…
487 $this->currentDate->modify('+ ' . $this->interval . ' months');
495 …$this->currentDate->setDate($this->currentDate->format('Y'), $this->currentDate->format('n'), $occ…
506 $currentMonth = $this->currentDate->format('n');
507 $currentYear = $this->currentDate->format('Y');
508 $currentDayOfMonth = $this->currentDate->format('j');
527 $nextDate = clone $this->currentDate;
530 $this->currentDate = $nextDate;
537 $this->currentDate->modify('+' . $this->interval . ' years');
542 $currentMonth = $this->currentDate->format('n');
543 $currentYear = $this->currentDate->format('Y');
544 $currentDayOfMonth = $this->currentDate->format('j');
581 $this->currentDate->setDate($currentYear, $currentMonth, $currentDayOfMonth);
586 $this->currentDate->setDate($currentYear, $currentMonth, $occurrence);
601 $this->currentDate->setDate($currentYear, $currentMonth, $currentDayOfMonth);
748 $startDate = clone $this->currentDate;