Lines Matching refs:timeZone
64 protected $timeZone; variable in Sabre\\VObject\\Recur\\EventIterator
89 * @param DateTimeZone $timeZone Reference timezone for floating dates and
92 public function __construct($input, $uid = null, DateTimeZone $timeZone = null) { argument
94 if (is_null($this->timeZone)) {
95 $timeZone = new DateTimeZone('UTC');
97 $this->timeZone = $timeZone;
126 $vevent->{'RECURRENCE-ID'}->getDateTime($this->timeZone)->getTimeStamp()
147 $this->startDate = $this->masterEvent->DTSTART->getDateTime($this->timeZone);
154 foreach($exDate->getDateTimes($this->timeZone) as $dt) {
164 $this->masterEvent->DTEND->getDateTime($this->timeZone)->getTimeStamp() -
323 $stamp = $event->DTSTART->getDateTime($this->timeZone)->getTimeStamp();
379 … $this->currentDate = $this->currentOverriddenEvent->DTSTART->getDateTime($this->timeZone);