X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=f68c3fba509600f621469f5be3a5b2c8b64dab0e;hb=838c0f96de57717e21e985cd2f92a130f568052d;hp=00a7c59094ef6313ecf992476fe9be37e4235e20;hpb=4f25396faeaa501907e93b24ee51ebdd08f84993;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index 00a7c59094..f68c3fba50 100644 --- a/mod/localtime.php +++ b/mod/localtime.php @@ -1,49 +1,59 @@ data['mod-localtime'] = datetime_convert('UTC',$_POST['timezone'],$t,$bd_format); + $bd_format = L10n::t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM + if ($_POST['timezone']) { + $a->data['mod-localtime'] = DateTimeFormat::convert($t, $_POST['timezone'], 'UTC', $bd_format); + } } -function localtime_content(App &$a) { +function localtime_content(App $a) +{ $t = $_REQUEST['time']; - if(! $t) + if (! $t) { $t = 'now'; + } - $o .= '

' . t('Time Conversion') . '

'; + $o = '

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

'; - $o .= '

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

'; + $o .= '

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

'; - $o .= '

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

'; + $o .= '

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

'; - if($_REQUEST['timezone']) - $o .= '

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

'; + if ($_REQUEST['timezone']) { + $o .= '

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

'; + } - if(x($a->data,'mod-localtime')) - $o .= '

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

'; + if (!empty($a->data['mod-localtime'])) { + $o .= '

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

'; + } - $o .= '
'; + $o .= ''; - $o .= '

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

'; + $o .= '

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

'; - $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles'); + $o .= Temporal::getTimezoneSelect(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles'); - $o .= '
'; + $o .= ''; return $o; - -} \ No newline at end of file +}