3declare(strict_types=1);
18use TYPO3\CMS\Core\Log\LogLevel;
19use TYPO3\CMS\Core\Utility\GeneralUtility;
20use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
79 $this->logger->log(LogLevel::DEBUG,
'Entry point');
80 $this->locale = LocalizationUtility::translate(
'locale',
'Timezones');
84 $this->intlDateFormatter = GeneralUtility::makeInstance(
87 IntlDateFormatter::MEDIUM,
88 IntlDateFormatter::SHORT
100 $this->logger->log(LogLevel::DEBUG,
'Entry setCurrentTimezone', [
'timezoneName' => $timezone]);
103 } elseif ($timezone instanceof DateTimeZone) {
104 $timezone = $timezone->getName();
106 $result = date_default_timezone_set($timezone);
107 $this->logger->log(LogLevel::DEBUG,
'date_default_timezone_set', [
109 'timezone' => $timezone, ]);
110 $this->currentTimezone =
new DateTimeZone($timezone);
111 $this->logger->log(LogLevel::DEBUG,
'Exit setCurrentTimezone');
132 $this->logger->log(LogLevel::DEBUG,
'Entry getIntlDateFormatter');
134 $this->logger->log(LogLevel::DEBUG,
'Exit getIntlDateFormatter', [$this->intlDateFormatter]);
147 return $this->intlDateFormatter::formatObject(
163 if (!$this->timezoneArray) {
177 $timezone_identifiers_list = DateTimeZone::listIdentifiers();
178 foreach ($timezone_identifiers_list as $timezone_identifier) {
179 $dateTimeZone =
new DateTimeZone($timezone_identifier);
180 $dateTime =
new DateTime(
'now', $dateTimeZone);
182 $hours = floor($dateTimeZone->getOffset($dateTime) / 3600);
183 $mins = floor(($dateTimeZone->getOffset($dateTime) - ($hours * 3600)) / 60);
184 $hours =
'GMT' . ($hours < 0 ? $hours :
'+' . $hours);
185 $mins = ($mins > 0 ? $mins :
'0' . $mins);
186 $text = str_replace(
'_',
' ', $timezone_identifier);
187 $this->timezoneArray[$timezone_identifier] = $text .
' (' . $hours .
':' . $mins .
')';
200 return $this->currentTimezone->getOffset(
new DateTime(
'now',
new DateTimeZone(
'GMT')));
212 $this->logger->log(LogLevel::DEBUG,
'Entry getIcuTimezoneString');
213 $timezone = $this->currentTimezone->getName();
214 $dt =
new DateTime(
'now',
new DateTimeZone($timezone));
215 $icuTimezoneString =
'GMT';
218 $icuTimezoneString .= $dt->format(
'P');
220 $this->logger->log(LogLevel::DEBUG,
'Exit getIcuTimezoneString', [$icuTimezoneString]);
222 return $icuTimezoneString;
232 public function isDst($time=
'now'): ?bool
234 $dateTime =
new DateTime($time, $this->currentTimezone);
235 return $dateTime->format(
'I') ===
'1';
getCurrentTimezoneAbbreviation()
setCurrentTimezone($timezone=null)
injectExtensionHelperService(ExtensionHelperService $extensionHelperService)