Path: blob/master/src/applications/calendar/parser/data/PhutilCalendarProxyDateTime.php
12262 views
<?php12abstract class PhutilCalendarProxyDateTime3extends PhutilCalendarDateTime {45private $proxy;67final protected function setProxy(PhutilCalendarDateTime $proxy) {8$this->proxy = $proxy;9return $this;10}1112final protected function getProxy() {13return $this->proxy;14}1516public function __clone() {17$this->proxy = clone $this->proxy;18}1920public function setViewerTimezone($timezone) {21$this->getProxy()->setViewerTimezone($timezone);22return $this;23}2425public function getViewerTimezone() {26return $this->getProxy()->getViewerTimezone();27}2829public function setIsAllDay($is_all_day) {30$this->getProxy()->setIsAllDay($is_all_day);31return $this;32}3334public function getIsAllDay() {35return $this->getProxy()->getIsAllDay();36}3738public function newPHPDateTimezone() {39return $this->getProxy()->newPHPDateTimezone();40}4142public function newPHPDateTime() {43return $this->getProxy()->newPHPDateTime();44}4546public function getTimezone() {47return $this->getProxy()->getTimezone();48}4950}515253