Home
last modified time | relevance | path

Searched refs:timeZone (Results 26 – 50 of 78) sorted by path

1234

/plugin/authgooglesheets/vendor/google/apiclient-services/src/DisplayVideo/
H A DPartnerGeneralConfig.php29 public $timeZone; variable in Google\\Service\\DisplayVideo\\PartnerGeneralConfig
48 public function setTimeZone($timeZone) argument
50 $this->timeZone = $timeZone;
57 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleTypeDateTime.php144 public function setTimeZone(GoogleTypeTimeZone $timeZone) argument
146 $this->timeZone = $timeZone;
153 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GameServices/
H A DRealm.php45 public $timeZone; variable in Google\\Service\\GameServices\\Realm
124 public function setTimeZone($timeZone) argument
126 $this->timeZone = $timeZone;
133 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/
H A DGoogleAnalyticsAdminV1alphaProperty.php69 public $timeZone; variable in Google\\Service\\GoogleAnalyticsAdmin\\GoogleAnalyticsAdminV1alphaProperty
232 public function setTimeZone($timeZone) argument
234 $this->timeZone = $timeZone;
241 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DCommonEventObject.php120 public function setTimeZone(TimeZone $timeZone) argument
122 $this->timeZone = $timeZone;
129 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DVerifyAssertionResponse.php174 public $timeZone; variable in Google\\Service\\IdentityToolkit\\VerifyAssertionResponse
701 public function setTimeZone($timeZone) argument
703 $this->timeZone = $timeZone;
710 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/
H A DRecurringSchedule.php152 public function setTimeZone(TimeZone $timeZone) argument
154 $this->timeZone = $timeZone;
161 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Playdeveloperreporting/
H A DGoogleTypeDateTime.php144 public function setTimeZone(GoogleTypeTimeZone $timeZone) argument
146 $this->timeZone = $timeZone;
153 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DSpreadsheetProperties.php39 public $timeZone; variable in Google\\Service\\Sheets\\SpreadsheetProperties
118 public function setTimeZone($timeZone) argument
120 $this->timeZone = $timeZone;
127 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DDatafeedFetchSchedule.php49 public $timeZone; variable in Google\\Service\\ShoppingContent\\DatafeedFetchSchedule
146 public function setTimeZone($timeZone) argument
148 $this->timeZone = $timeZone;
155 return $this->timeZone;
H A DDateTime.php144 public function setTimeZone(TimeZone $timeZone) argument
146 $this->timeZone = $timeZone;
153 return $this->timeZone;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vault/
H A DQuery.php69 public $timeZone; variable in Google\\Service\\Vault\\Query
286 public function setTimeZone($timeZone) argument
288 $this->timeZone = $timeZone;
295 return $this->timeZone;
/plugin/davcal/
H A Djstz.js109 return format.resolvedOptions().timeZone;
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php449 $timeZone = $vtimezoneObj->VTIMEZONE->getTimeZone();
452 $timeZone = new DateTimeZone('UTC');
454 $timeZones[$calendarPath] = $timeZone;
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php249 * @param DateTimeZone $timeZone reference timezone for floating dates and
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
257 if (!$timeZone) {
258 $timeZone = new DateTimeZone('UTC');
293 $it = new EventIterator($events, $timeZone);
324 $dt = $child->getDateTimes($timeZone);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php67 protected $timeZone; variable in Sabre\\VObject\\FreeBusyGenerator
78 * @param DateTimeZone $timeZone
90 if (is_null($timeZone)) {
91 $timeZone = new DateTimeZone('UTC');
93 $this->setTimeZone($timeZone);
164 * @param DateTimeZone $timeZone
167 public function setTimeZone(DateTimeZone $timeZone) { argument
169 $this->timeZone = $timeZone;
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
241 $startTime = $component->DTSTART->getDateTime($this->timeZone);
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php139 * @param DateTimeZone $timeZone
142 public function getDateTime(DateTimeZone $timeZone = null) { argument
144 $dt = $this->getDateTimes($timeZone);
158 * @param DateTimeZone $timeZone
161 public function getDateTimes(DateTimeZone $timeZone = null) { argument
167 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
172 $dts[] = DateTimeParser::parse($part, $timeZone);
/plugin/davcal/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php64 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() -
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument
17 $timeZone = new DateTimeZone($timeZone);
22 $timeZone
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DFreeBusyGeneratorTest.php336 function testGenerator($input, $expected, $timeZone = null) { argument
342 $timeZone
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php249 * @param DateTimeZone $timeZone reference timezone for floating dates and
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
257 if (!$timeZone) {
258 $timeZone = new DateTimeZone('UTC');
293 $it = new EventIterator($events, $timeZone);
324 $dt = $child->getDateTimes($timeZone);
/plugin/davcard/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php67 protected $timeZone; variable in Sabre\\VObject\\FreeBusyGenerator
78 * @param DateTimeZone $timeZone
90 if (is_null($timeZone)) {
91 $timeZone = new DateTimeZone('UTC');
93 $this->setTimeZone($timeZone);
164 * @param DateTimeZone $timeZone
167 public function setTimeZone(DateTimeZone $timeZone) { argument
169 $this->timeZone = $timeZone;
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
241 $startTime = $component->DTSTART->getDateTime($this->timeZone);
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php139 * @param DateTimeZone $timeZone
142 public function getDateTime(DateTimeZone $timeZone = null) { argument
144 $dt = $this->getDateTimes($timeZone);
158 * @param DateTimeZone $timeZone
161 public function getDateTimes(DateTimeZone $timeZone = null) { argument
167 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
172 $dts[] = DateTimeParser::parse($part, $timeZone);
/plugin/davcard/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php64 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() -
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument
17 $timeZone = new DateTimeZone($timeZone);
22 $timeZone

1234