Timezone - Uhrzeit in Joomla stimmt nicht?

Korrekte Uhrzeit anhand der Config anzeigen

 $timezone = new DateTimeZone(Factory::getConfig()->get('offset'));
echo Factory::getDate()->setTimezone($timezone)->format(Text::_('DATE_FORMAT_FILTER_DATETIME'));

Korrekte Uhrzeit anhand der Benutzereinstellung anzeigen

 $timezone = Factory::getUser()->getTimezone();
echo Factory::getDate()->setTimezone($timezone)->format(Text::_('DATE_FORMAT_FILTER_DATETIME'));

Nützlicher Link: https://docs.joomla.org/How_to_use_JDate