friendica/mod/localtime.php

60 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2018-01-22 15:16:25 +01:00
/**
* @file mod/localtime.php
*/
use Friendica\App;
2018-01-22 15:16:25 +01:00
use Friendica\Core\L10n;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Temporal;
2018-01-22 15:16:25 +01:00
function localtime_post(App $a)
{
$t = $_REQUEST['time'];
2018-01-22 15:16:25 +01:00
if (! $t) {
$t = 'now';
2018-01-22 15:16:25 +01:00
}
2018-01-22 15:16:25 +01:00
$bd_format = L10n::t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
2018-01-22 15:16:25 +01:00
if ($_POST['timezone']) {
$a->data['mod-localtime'] = DateTimeFormat::convert($t, $_POST['timezone'], 'UTC', $bd_format);
2018-01-22 15:16:25 +01:00
}
}
2018-01-22 15:16:25 +01:00
function localtime_content(App $a)
{
$t = $_REQUEST['time'];
2018-01-22 15:16:25 +01:00
if (! $t) {
$t = 'now';
2018-01-22 15:16:25 +01:00
}
$o = '<h3>' . L10n::t('Time Conversion') . '</h3>';
2018-01-22 15:16:25 +01:00
$o .= '<p>' . L10n::t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
2011-09-15 04:53:13 +02:00
$o .= '<p>' . L10n::t('UTC time: %s', $t) . '</p>';
2011-09-15 04:53:13 +02:00
2018-01-22 15:16:25 +01:00
if ($_REQUEST['timezone']) {
$o .= '<p>' . L10n::t('Current timezone: %s', $_REQUEST['timezone']) . '</p>';
2018-01-22 15:16:25 +01:00
}
2011-09-15 04:53:13 +02:00
if (!empty($a->data['mod-localtime'])) {
$o .= '<p>' . L10n::t('Converted localtime: %s', $a->data['mod-localtime']) . '</p>';
2018-01-22 15:16:25 +01:00
}
$o .= '<form action ="' . System::baseUrl() . '/localtime?f=&time=' . $t . '" method="post" >';
2018-01-22 15:16:25 +01:00
$o .= '<p>' . L10n::t('Please select your timezone:') . '</p>';
$o .= Temporal::getTimezoneSelect(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
2018-01-22 15:16:25 +01:00
$o .= '<input type="submit" name="submit" value="' . L10n::t('Submit') . '" /></form>';
return $o;
2017-08-26 08:04:21 +02:00
}