]> git.mxchange.org Git - friendica.git/blobdiff - mod/localtime.php
Just some more fixed notice
[friendica.git] / mod / localtime.php
index f7129656f4dbbd5eb4bed678812045e99ffacf6b..9a754ac80d9edddc07892840ea897b31b9a43849 100644 (file)
@@ -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 .= '<h3>' . L10n::t('Time Conversion') . '</h3>';
+       $o  = '<h3>' . L10n::t('Time Conversion') . '</h3>';
 
        $o .= '<p>' . L10n::t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
 
@@ -50,7 +51,7 @@ function localtime_content(App $a)
 
        $o .= '<p>' . L10n::t('Please select your timezone:') . '</p>';
 
-       $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
+       $o .= Temporal::getTimezoneSelect(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
 
        $o .= '<input type="submit" name="submit" value="' . L10n::t('Submit') . '" /></form>';