Timezones
TimezonesUtility.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/*
6 * This file is part of the package thucke/timezones.
7 *
8 * For the full copyright and license information, please read the
9 * LICENSE file that was distributed with this source code.
10 */
11
13
14use Exception;
18use TYPO3\CMS\Core\Log\Logger;
19use TYPO3\CMS\Core\Log\LogLevel;
20use TYPO3\CMS\Core\Utility\GeneralUtility;
21use TYPO3\CMS\Extbase\Object\ObjectManager;
22
29{
40 public static function convertToTimezone($value): string
41 {
42 //instantiate the logger
44 $logger = GeneralUtility::makeInstance(ObjectManager::class)->get(ExtensionHelperService::class)->getLogger(__CLASS__);
45 $logger->log(LogLevel::DEBUG, 'Entry convertToTimezone');
46
48 $timezoneService = GeneralUtility::makeInstance(ObjectManager::class)->get(TimezoneService::class);
49
51 $cookieService = GeneralUtility::makeInstance(ObjectManager::class)->get(CookieService::class);
52
53 $timezoneService->setCurrentTimezone($cookieService->getCookie('tx_timezones'));
54 $convertedValue = $timezoneService->getIntlDateFormatter()->format($value);
55
56 $logger->log(LogLevel::DEBUG, 'Exit convertToTimezone', ['originalValue' => $value, 'convertedValue' => $convertedValue]);
57
58 return $convertedValue;
59 }
60}