X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=f7129656f4dbbd5eb4bed678812045e99ffacf6b;hb=6ef2fd56f78b3bfe1df59bbd35bd9fdb547b3291;hp=c03eae1b0e490d0246647933d68357a1e0a83658;hpb=4bee1859be5fbf46ecc19728a908e31b4e9b09b6;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index c03eae1b0e..f7129656f4 100644 --- a/mod/localtime.php +++ b/mod/localtime.php @@ -1,49 +1,58 @@ 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'] = datetime_convert('UTC', $_POST['timezone'], $t, $bd_format); + } } -function localtime_content(&$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('Friendika 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 (x($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 .= '
'; + $o .= ''; return $o; - -} \ No newline at end of file +}