. * */ namespace Friendica\Module\Debug; use Friendica\BaseModule; use Friendica\Core\Installer; use Friendica\DI; use Friendica\Util\DateTimeFormat; use Friendica\Util\Temporal; class Localtime extends BaseModule { public static function post(array $parameters = []) { $time = ($_REQUEST['time'] ?? '') ?: 'now'; $bd_format = DI::l10n()->t('l F d, Y \@ g:i A'); if (!empty($_POST['timezone'])) { DI::app()->data['mod-localtime'] = DateTimeFormat::convert($time, $_POST['timezone'], 'UTC', $bd_format); } } public static function content(array $parameters = []) { $app = DI::app(); $time = ($_REQUEST['time'] ?? '') ?: 'now'; $output = '
' . DI::l10n()->t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '
'; $output .= '' . DI::l10n()->t('UTC time: %s', $time) . '
'; if (!empty($_REQUEST['timezone'])) { $output .= '' . DI::l10n()->t('Current timezone: %s', $_REQUEST['timezone']) . '
'; } if (!empty($app->data['mod-localtime'])) { $output .= '' . DI::l10n()->t('Converted localtime: %s', $app->data['mod-localtime']) . '
'; } $output .= ''; return $output; } }