X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=9a754ac80d9edddc07892840ea897b31b9a43849;hb=0f02d1a449aa5dc172696325ce43949783862eba;hp=aaa93b4ea9c6340d742e459839d5198b6b21aa18;hpb=9c2c4839968169a191084d6d2b0d629d82430e67;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index aaa93b4ea9..9a754ac80d 100644 --- a/mod/localtime.php +++ b/mod/localtime.php @@ -1,54 +1,59 @@ data['mod-localtime'] = datetime_convert('UTC',$_POST['timezone'],$t,$bd_format); + $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) { $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']) . '

'; + $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 +}