2014-11-24 14:08:19 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2014-11-24 14:08:19 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-11-24 14:08:19 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-11-24 14:08:19 +03:00
|
|
|
namespace OCP;
|
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Interface IDateTimeFormatter
|
|
|
|
*
|
|
|
|
* @since 8.0.0
|
|
|
|
*/
|
2014-11-24 14:08:19 +03:00
|
|
|
interface IDateTimeFormatter {
|
|
|
|
/**
|
|
|
|
* Formats the date of the given timestamp
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
|
|
|
* @param string $format Either 'full', 'long', 'medium' or 'short'
|
|
|
|
* full: e.g. 'EEEE, MMMM d, y' => 'Wednesday, August 20, 2014'
|
|
|
|
* long: e.g. 'MMMM d, y' => 'August 20, 2014'
|
|
|
|
* medium: e.g. 'MMM d, y' => 'Aug 20, 2014'
|
|
|
|
* short: e.g. 'M/d/yy' => '8/20/14'
|
|
|
|
* The exact format is dependent on the language
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param \DateTimeZone|null $timeZone The timezone to use
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Formatted date string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatDate($timestamp, $format = 'long', \DateTimeZone $timeZone = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats the date of the given timestamp
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
|
|
|
* @param string $format Either 'full', 'long', 'medium' or 'short'
|
|
|
|
* full: e.g. 'EEEE, MMMM d, y' => 'Wednesday, August 20, 2014'
|
|
|
|
* long: e.g. 'MMMM d, y' => 'August 20, 2014'
|
|
|
|
* medium: e.g. 'MMM d, y' => 'Aug 20, 2014'
|
|
|
|
* short: e.g. 'M/d/yy' => '8/20/14'
|
|
|
|
* The exact format is dependent on the language
|
|
|
|
* Uses 'Today', 'Yesterday' and 'Tomorrow' when applicable
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param \DateTimeZone|null $timeZone The timezone to use
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Formatted relative date string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatDateRelativeDay($timestamp, $format = 'long', \DateTimeZone $timeZone = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives the relative date of the timestamp
|
|
|
|
* Only works for past dates
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param int|\DateTime|null $baseTimestamp Timestamp to compare $timestamp against, defaults to current time
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Dates returned are:
|
|
|
|
* < 1 month => Today, Yesterday, n days ago
|
|
|
|
* < 13 month => last month, n months ago
|
|
|
|
* >= 13 month => last year, n years ago
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatDateSpan($timestamp, $baseTimestamp = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats the time of the given timestamp
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
|
|
|
* @param string $format Either 'full', 'long', 'medium' or 'short'
|
|
|
|
* full: e.g. 'h:mm:ss a zzzz' => '11:42:13 AM GMT+0:00'
|
|
|
|
* long: e.g. 'h:mm:ss a z' => '11:42:13 AM GMT'
|
|
|
|
* medium: e.g. 'h:mm:ss a' => '11:42:13 AM'
|
|
|
|
* short: e.g. 'h:mm a' => '11:42 AM'
|
|
|
|
* The exact format is dependent on the language
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param \DateTimeZone|null $timeZone The timezone to use
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Formatted time string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatTime($timestamp, $format = 'medium', \DateTimeZone $timeZone = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives the relative past time of the timestamp
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param int|\DateTime|null $baseTimestamp Timestamp to compare $timestamp against, defaults to current time
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Dates returned are:
|
|
|
|
* < 60 sec => seconds ago
|
|
|
|
* < 1 hour => n minutes ago
|
|
|
|
* < 1 day => n hours ago
|
|
|
|
* < 1 month => Yesterday, n days ago
|
|
|
|
* < 13 month => last month, n months ago
|
|
|
|
* >= 13 month => last year, n years ago
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatTimeSpan($timestamp, $baseTimestamp = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats the date and time of the given timestamp
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
|
|
|
* @param string $formatDate See formatDate() for description
|
|
|
|
* @param string $formatTime See formatTime() for description
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param \DateTimeZone|null $timeZone The timezone to use
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Formatted date and time string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatDateTime($timestamp, $formatDate = 'long', $formatTime = 'medium', \DateTimeZone $timeZone = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats the date and time of the given timestamp
|
|
|
|
*
|
|
|
|
* @param int|\DateTime $timestamp
|
|
|
|
* @param string $formatDate See formatDate() for description
|
|
|
|
* Uses 'Today', 'Yesterday' and 'Tomorrow' when applicable
|
|
|
|
* @param string $formatTime See formatTime() for description
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param \DateTimeZone|null $timeZone The timezone to use
|
|
|
|
* @param \OCP\IL10N|null $l The locale to use
|
2014-11-24 14:08:19 +03:00
|
|
|
* @return string Formatted relative date and time string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 14:08:19 +03:00
|
|
|
*/
|
2014-12-10 11:35:26 +03:00
|
|
|
public function formatDateTimeRelativeDay($timestamp, $formatDate = 'long', $formatTime = 'medium', \DateTimeZone $timeZone = null, \OCP\IL10N $l = null);
|
2014-11-24 14:08:19 +03:00
|
|
|
}
|