X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=9a754ac80d9edddc07892840ea897b31b9a43849;hb=5c63de1692c5be4ca457e03fc037683909a44348;hp=535308903153af6d3cf81ef4d310ccc8705034db;hpb=5eaa5951a1b19b985017b5db20f3b1abf464a1ef;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index 5353089031..9a754ac80d 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 (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 .= Temporal::getTimezoneSelect(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles'); - $o .= '
'; + $o .= ''; return $o; - -} \ No newline at end of file +}