data['mod-localtime'] = DateTimeFormat::convert($time, $_POST['timezone'], 'UTC', $bd_format); } } public static function content() { $app = self::getApp(); $time = defaults($_REQUEST, 'time', 'now'); $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 .= ''; return $output; } }