X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=f68c3fba509600f621469f5be3a5b2c8b64dab0e;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=f7129656f4dbbd5eb4bed678812045e99ffacf6b;hpb=6b44fbbda03af125035c185c964f10ce78f97610;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index f7129656f4..f68c3fba50 100644 --- a/mod/localtime.php +++ b/mod/localtime.php @@ -2,11 +2,12 @@ /** * @file mod/localtime.php */ + use Friendica\App; use Friendica\Core\L10n; use Friendica\Core\System; - -require_once 'include/datetime.php'; +use Friendica\Util\DateTimeFormat; +use Friendica\Util\Temporal; function localtime_post(App $a) { @@ -18,7 +19,7 @@ function localtime_post(App $a) $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); + $a->data['mod-localtime'] = DateTimeFormat::convert($t, $_POST['timezone'], 'UTC', $bd_format); } } @@ -29,7 +30,7 @@ function localtime_content(App $a) $t = 'now'; } - $o .= '

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

'; + $o = '

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

'; $o .= '

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

'; @@ -41,7 +42,7 @@ function localtime_content(App $a) $o .= '

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

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

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

'; } @@ -50,7 +51,7 @@ function localtime_content(App $a) $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 .= '';