Home
last modified time | relevance | path

Searched refs:tzid (Results 1 – 16 of 16) sorted by relevance

/plugin/icalevents/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php120 * @param string $tzid
138 if ($tzid[0] !== '(') {
150 (in_array($tzid, $tzIdentifiers)) ||
151 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
152 (in_array($tzid, self::getIdentifiersBC()))
154 return new \DateTimeZone($tzid);
164 if (isset(self::$map[$tzid])) {
165 return new \DateTimeZone(self::$map[$tzid]);
171 if (preg_match('/^\((UTC|GMT)(\+|\-)[\d]{2}\:[\d]{2}\) (.*)/', $tzid, $matches)) {
180 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php120 * @param string $tzid
138 if ('(' !== $tzid[0]) {
149 (in_array($tzid, $tzIdentifiers)) ||
150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
151 (in_array($tzid, self::getIdentifiersBC()))
153 return new \DateTimeZone($tzid);
162 if (isset(self::$map[$tzid])) {
163 return new \DateTimeZone(self::$map[$tzid]);
169 if (preg_match('/^\((UTC|GMT)(\+|\-)[\d]{2}\:[\d]{2}\) (.*)/', $tzid, $matches)) {
178 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php120 * @param string $tzid
124 … static public function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
137 if ($tzid[0]!=='(') {
149 (in_array($tzid, $tzIdentifiers)) ||
150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
151 (in_array($tzid, self::getIdentifiersBC()))
153 return new \DateTimeZone($tzid);
163 if (isset(self::$map[$tzid])) {
164 return new \DateTimeZone(self::$map[$tzid]);
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php120 * @param string $tzid
124 … static public function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
137 if ($tzid[0]!=='(') {
149 (in_array($tzid, $tzIdentifiers)) ||
150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
151 (in_array($tzid, self::getIdentifiersBC()))
153 return new \DateTimeZone($tzid);
163 if (isset(self::$map[$tzid])) {
164 return new \DateTimeZone(self::$map[$tzid]);
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php120 * @param string $tzid
124 … static public function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
137 if ($tzid[0]!=='(') {
149 (in_array($tzid, $tzIdentifiers)) ||
150 (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) ||
151 (in_array($tzid, self::getIdentifiersBC()))
153 return new \DateTimeZone($tzid);
163 if (isset(self::$map[$tzid])) {
164 return new \DateTimeZone(self::$map[$tzid]);
169 if (preg_match('/^GMT(\+|-)([0-9]{4})$/', $tzid, $matches)) {
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DTimeZoneUtilTest.php166 function testTimeZoneIdentifiers($tzid) { argument
168 $tz = TimeZoneUtil::getTimeZone($tzid);
169 $ex = new \DateTimeZone($tzid);
178 function testTimeZoneBCIdentifiers($tzid) { argument
180 $tz = TimeZoneUtil::getTimeZone($tzid);
181 $ex = new \DateTimeZone($tzid);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DTimeZoneUtilTest.php166 function testTimeZoneIdentifiers($tzid) { argument
168 $tz = TimeZoneUtil::getTimeZone($tzid);
169 $ex = new \DateTimeZone($tzid);
178 function testTimeZoneBCIdentifiers($tzid) { argument
180 $tz = TimeZoneUtil::getTimeZone($tzid);
181 $ex = new \DateTimeZone($tzid);
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DTimeZoneUtilTest.php166 function testTimeZoneIdentifiers($tzid) { argument
168 $tz = TimeZoneUtil::getTimeZone($tzid);
169 $ex = new \DateTimeZone($tzid);
178 function testTimeZoneBCIdentifiers($tzid) { argument
180 $tz = TimeZoneUtil::getTimeZone($tzid);
181 $ex = new \DateTimeZone($tzid);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DTimeZoneUtilTest.php166 function testTimeZoneIdentifiers($tzid) { argument
168 $tz = TimeZoneUtil::getTimeZone($tzid);
169 $ex = new \DateTimeZone($tzid);
178 function testTimeZoneBCIdentifiers($tzid) { argument
180 $tz = TimeZoneUtil::getTimeZone($tzid);
181 $ex = new \DateTimeZone($tzid);
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php161 $tzid = $this['TZID'];
163 if ($tzid) {
164 $timeZone = TimeZoneUtil::getTimeZone((string) $tzid, $this->root);
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php172 $tzid = $this['TZID'];
174 if ($tzid) {
175 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php164 $tzid = $this['TZID'];
166 if ($tzid) {
167 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php164 $tzid = $this['TZID'];
166 if ($tzid) {
167 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php164 $tzid = $this['TZID'];
166 if ($tzid) {
167 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng181 tzidparam = element tzid {
571 property-tzid &
927 property-tzid = element tzid {
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng181 tzidparam = element tzid {
571 property-tzid &
927 property-tzid = element tzid {