13use TYPO3\CMS\Core\Log\LogLevel;
14use TYPO3\CMS\Extbase\Annotation as Extbase;
15use TYPO3\CMS\Extbase\Object\ObjectManager;
16use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
88 $this->logger = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(ObjectManager::class)
89 ->get(ExtensionHelperService::class)
90 ->getLogger(__CLASS__);
91 $this->logger->log(LogLevel::DEBUG,
'Entry initializeAction');
93 $this->checkIntlModule();
95 $this->prefixId = strtolower(
96 'tx_' . $this->request->getControllerExtensionName()
100 $this->cookieLifetime = (new \DateTime())->add(
new \DateInterval(
'P10Y'))->getTimestamp();
103 if ($this->cookieService->hasCookie($this->prefixId .
'_pi1')) {
104 $this->timezoneService->setCurrentTimezone($this->cookieService->getCookie($this->prefixId .
'_pi1'));
105 $this->cookieService->clearCookie($this->prefixId .
'_pi1');
107 $this->timezoneService->setCurrentTimezone($this->cookieService->getCookie($this->prefixId));
109 $this->logger->log(LogLevel::DEBUG,
'Exit initializeAction');
119 $this->logger->log(LogLevel::DEBUG,
'Entry indexAction');
120 $this->view->assign(
'tz_name', $this->timezoneService->getCurrentTimezoneAbbreviation());
121 $pluginPage = abs((
int)$this->settings[
'pluginPage']);
123 if ($pluginPage > 0) {
125 $selfUri = $this->controllerContext->getUriBuilder()->reset()
126 ->setTargetPageUid($pluginPage)
127 ->setCreateAbsoluteUri(
true)
128 ->buildFrontendUri();
129 $this->view->assign(
'change_url', $selfUri);
133 'No pluginPage set - skipping hyperlink generation',
134 [
'errorCode' => 1507388375]
137 $this->logger->log(LogLevel::DEBUG,
'Exit indexAction');
147 $this->logger->log(LogLevel::DEBUG,
'Entry showAction');
151 [$this->timezoneService->getOffsetInSeconds(), date(
'Y-m-d H:i')]
153 $this->view->assign(
'tz_name', $this->timezoneService->getCurrentTimezoneAbbreviation());
154 $this->view->assign(
'curdatetime', $this->formatDateTime(time()));
155 $this->logger->log(LogLevel::DEBUG,
'Exit showAction');
165 $this->logger->log(LogLevel::DEBUG,
'Entry selectAction');
166 $this->view->assign(
'selector', $this->timezoneService->getTimezoneArray());
167 $this->view->assign(
'selected', $this->timezoneService->getCurrentTimezone()->getName());
169 $selfUri = $this->controllerContext->getUriBuilder()->reset()
170 ->setTargetPageUid($GLOBALS[
'TSFE']->
id)
171 ->setCreateAbsoluteUri(
true)
172 ->buildFrontendUri();
173 $this->view->assign(
'action', $selfUri);
174 $this->logger->log(LogLevel::DEBUG,
'Exit selectAction');
187 $this->logger->log(LogLevel::DEBUG,
'Entry tzsetAction', [
'Timezone' => $timezone]);
190 $this->timezoneService->setCurrentTimezone($timezone);
191 $timezone = $this->timezoneService->getCurrentTimezone()->getName();
192 $this->cookieService->setCookie($this->prefixId, $timezone, $this->cookieLifetime);
194 $referrer = $this->request->getInternalArgument(
'__referrer');
198 'Exit tzsetAction - forwarding request',
200 'action' => $referrer[
'@action'],
201 'controller' => $referrer[
'@controller'],
202 'extension' => $referrer[
'@extension'],
206 $this->controllerContext->getFlashMessageQueue()->clear();
207 $this->redirectToUri($_SERVER[
'HTTP_REFERER']);
215 private function checkIntlModule(): void
217 if (!extension_loaded(
'intl')) {
218 throw new \Thucke\Timezones\Exception\ModuleNotLoadedException(
219 LocalizationUtility::translate(
'error.phpModuleIntlNotLoaded',
'Timezones'),
234 private function formatDateTime($tstamp): string
236 if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded(
'timezones')) {
237 $rc = \Thucke\Timezones\Utility\TimezonesUtility::convertToTimezone($tstamp);
239 $rc = date(DATE_RFC850, $tstamp);
injectTimezoneService(\Thucke\Timezones\Service\TimezoneService $timezoneService)
injectCookieService(\Thucke\Timezones\Service\CookieService $cookieService)
tzsetAction($timezone=null)
injectExtensionHelperService(ExtensionHelperService $extensionHelperService)