data['mod-localtime'] = DateTimeFormat::convert($time, $_POST['timezone'], 'UTC', $bd_format); } } public static function content() { $app = self::getApp(); $time = ($_REQUEST['time'] ?? '') ?: 'now'; $output = '

' . L10n::t('Time Conversion') . '

'; $output .= '

' . L10n::t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '

'; $output .= '

' . L10n::t('UTC time: %s', $time) . '

'; if (!empty($_REQUEST['timezone'])) { $output .= '

' . L10n::t('Current timezone: %s', $_REQUEST['timezone']) . '

'; } if (!empty($app->data['mod-localtime'])) { $output .= '

' . L10n::t('Converted localtime: %s', $app->data['mod-localtime']) . '

'; } $output .= '
'; $output .= '

' . L10n::t('Please select your timezone:') . '

'; $output .= Temporal::getTimezoneSelect(($_REQUEST['timezone'] ?? '') ?: Installer::DEFAULT_TZ); $output .= '
'; return $output; } }