3declare(strict_types=1);
18use TYPO3\CMS\Core\Log\Logger;
19use TYPO3\CMS\Core\Log\LogLevel;
20use TYPO3\CMS\Core\Utility\GeneralUtility;
21use TYPO3\CMS\Extbase\Object\ObjectManager;
40 public static function convertToTimezone($value):
string
44 $logger = GeneralUtility::makeInstance(ObjectManager::class)->get(ExtensionHelperService::class)->getLogger(__CLASS__);
45 $logger->log(LogLevel::DEBUG,
'Entry convertToTimezone');
48 $timezoneService = GeneralUtility::makeInstance(ObjectManager::class)->get(TimezoneService::class);
51 $cookieService = GeneralUtility::makeInstance(ObjectManager::class)->get(CookieService::class);
53 $timezoneService->setCurrentTimezone($cookieService->getCookie(
'tx_timezones'));
54 $convertedValue = $timezoneService->getIntlDateFormatter()->format($value);
56 $logger->log(LogLevel::DEBUG,
'Exit convertToTimezone', [
'originalValue' => $value,
'convertedValue' => $convertedValue]);
58 return $convertedValue;