]> git.mxchange.org Git - friendica.git/blobdiff - mod/localtime.php
Just some more fixed notice
[friendica.git] / mod / localtime.php
index 535308903153af6d3cf81ef4d310ccc8705034db..9a754ac80d9edddc07892840ea897b31b9a43849 100644 (file)
@@ -1,49 +1,59 @@
 <?php
-
-require_once('include/datetime.php');
-
-
-function localtime_post(App $a) {
-
+/**
+ * @file mod/localtime.php
+ */
+
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\System;
+use Friendica\Util\DateTimeFormat;
+use Friendica\Util\Temporal;
+
+function localtime_post(App $a)
+{
        $t = $_REQUEST['time'];
-       if(! $t)
+       if (! $t) {
                $t = 'now';
+       }
 
-       $bd_format = 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);
+       $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 .= '<h3>' . t('Time Conversion') . '</h3>';
+       $o  = '<h3>' . L10n::t('Time Conversion') . '</h3>';
 
-       $o .= '<p>' . t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
+       $o .= '<p>' . L10n::t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
 
 
 
-       $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>';
+       $o .= '<p>' . L10n::t('UTC time: %s', $t) . '</p>';
 
-       if($_REQUEST['timezone'])
-               $o .= '<p>' . sprintf( t('Current timezone: %s'), $_REQUEST['timezone']) . '</p>';
+       if ($_REQUEST['timezone']) {
+               $o .= '<p>' . L10n::t('Current timezone: %s', $_REQUEST['timezone']) . '</p>';
+       }
 
-       if(x($a->data,'mod-localtime'))
-               $o .= '<p>' . sprintf( t('Converted localtime: %s'),$a->data['mod-localtime']) . '</p>';
+       if (x($a->data, 'mod-localtime')) {
+               $o .= '<p>' . L10n::t('Converted localtime: %s', $a->data['mod-localtime']) . '</p>';
+       }
 
 
-       $o .= '<form action ="' . App::get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >';
+       $o .= '<form action ="' . System::baseUrl() . '/localtime?f=&time=' . $t . '" method="post" >';
 
-       $o .= '<p>' . t('Please select your timezone:') . '</p>';
+       $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="' . t('Submit') . '" /></form>';
+       $o .= '<input type="submit" name="submit" value="' . L10n::t('Submit') . '" /></form>';
 
        return $o;
-
-}
\ No newline at end of file
+}