diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-23 13:45:21 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-23 13:45:21 +0200 |
commit | c587a4aaa212a48aca0b34fc2f9625774e02c472 (patch) | |
tree | 125b5ba8c98d5137e63e71c003135a9b338586d9 /lib/private/util.php | |
parent | a062db4fd02feb1a0eff48eb130da7cc48c49899 (diff) | |
parent | 814114ab8eda5d383f4c620f3854cfefcdb6895d (diff) | |
download | nextcloud-server-c587a4aaa212a48aca0b34fc2f9625774e02c472.tar.gz nextcloud-server-c587a4aaa212a48aca0b34fc2f9625774e02c472.zip |
Merge pull request #11222 from owncloud/store-users-timezone-master
send browsers timezone back tp the server on login
Diffstat (limited to 'lib/private/util.php')
-rwxr-xr-x | lib/private/util.php | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index 18857139791..5a310273258 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -381,16 +381,26 @@ class OC_Util { * * @param int $timestamp * @param bool $dateOnly option to omit time from the result + * @param DateTimeZone|string $timeZone where the given timestamp shall be converted to * @return string timestamp * @description adjust to clients timezone if we know it */ - public static function formatDate( $timestamp, $dateOnly = false) { - if(\OC::$server->getSession()->exists('timezone')) { - $systemTimeZone = intval(date('O')); - $systemTimeZone = (round($systemTimeZone / 100, 0) * 60) + ($systemTimeZone % 100); - $clientTimeZone = \OC::$server->getSession()->get('timezone') * 60; - $offset = $clientTimeZone - $systemTimeZone; - $timestamp = $timestamp + $offset * 60; + public static function formatDate($timestamp, $dateOnly = false, $timeZone = null) { + if (is_null($timeZone)) { + if (\OC::$server->getSession()->exists('timezone')) { + $systemTimeZone = intval(date('O')); + $systemTimeZone = (round($systemTimeZone / 100, 0) * 60) + ($systemTimeZone % 100); + $clientTimeZone = \OC::$server->getSession()->get('timezone') * 60; + $offset = $clientTimeZone - $systemTimeZone; + $timestamp = $timestamp + $offset * 60; + } + } else { + if (!$timeZone instanceof DateTimeZone) { + $timeZone = new DateTimeZone($timeZone); + } + $dt = new DateTime("@$timestamp"); + $offset = $timeZone->getOffset($dt); + $timestamp += $offset; } $l = \OC::$server->getL10N('lib'); return $l->l($dateOnly ? 'date' : 'datetime', $timestamp); |