summaryrefslogtreecommitdiff
path: root/includes/composer/vendor/om/icalparser/bin
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-03-21 16:21:21 +0100
committerRaindropsSys <contact@minteck.org>2023-03-21 16:21:21 +0100
commit475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd (patch)
tree2cff46debf9c1e13892e7babff9deb6874ecb4b2 /includes/composer/vendor/om/icalparser/bin
parent7ccc2de87f9e25c715dc09b9aba4eb5c66f80424 (diff)
downloadpluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.tar.gz
pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.tar.bz2
pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.zip
Updated 26 files and added 1074 files (automated)
Diffstat (limited to 'includes/composer/vendor/om/icalparser/bin')
-rw-r--r--includes/composer/vendor/om/icalparser/bin/timezones.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/includes/composer/vendor/om/icalparser/bin/timezones.php b/includes/composer/vendor/om/icalparser/bin/timezones.php
new file mode 100644
index 0000000..3bf3708
--- /dev/null
+++ b/includes/composer/vendor/om/icalparser/bin/timezones.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * This file generates a map from windows timezones to tz database timezones
+ *
+ * @author Clement Wong <cw@clement.hk>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT License
+ */
+$windows_timezones = [];
+$windowstimezonexml = new DOMDocument();
+$windowstimezonexml->load('https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml');
+$zones = $windowstimezonexml->getElementsByTagName('mapZone');
+foreach ($zones as $zone) {
+ if ($zone->getAttribute('territory') === '001') {
+ $windows_timezones[$zone->getAttribute('other')] = $zone->getAttribute('type');
+ }
+}
+
+file_put_contents(__DIR__ . '/../src/WindowsTimezones.php', "<?php\n\$windows_timezones = " . var_export($windows_timezones, true) . ';');
+