]> git.mxchange.org Git - friendica.git/blobdiff - mod/localtime.php
Standards and some more replace item calls
[friendica.git] / mod / localtime.php
index 29402b34eb4c040ecd8a107d8de57106f8c72e6d..9a754ac80d9edddc07892840ea897b31b9a43849 100644 (file)
@@ -6,10 +6,9 @@
 use Friendica\App;
 use Friendica\Core\L10n;
 use Friendica\Core\System;
+use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Temporal;
 
-require_once 'include/datetime.php';
-
 function localtime_post(App $a)
 {
        $t = $_REQUEST['time'];
@@ -20,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'] = Temporal::convert($t, $_POST['timezone'], 'UTC', $bd_format);
+               $a->data['mod-localtime'] = DateTimeFormat::convert($t, $_POST['timezone'], 'UTC', $bd_format);
        }
 }
 
@@ -31,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>';