1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Intl\Data\Provider;
/**
* Provides date and time formats.
*/
class DateTimeFormatProvider
{
public const DATETIME_FORMAT_LONG = 1;
public const DATETIME_FORMAT_SHORT = 2;
public const DATE_FORMAT_LONG = 10;
public const DATE_FORMAT_DAY_MONTH = 11;
public const DATE_FORMAT_SHORT = 12;
public const DATE_FORMAT_MONTH_SHORT = 13;
public const DATE_FORMAT_MONTH_LONG = 14;
public const DATE_FORMAT_YEAR = 15;
public const TIME_FORMAT = 20;
/**
* Returns the format pattern for the given format type
*
* @param int|string $format one of the format constants
*
* @return string
*/
public function getFormatPattern($format)
{
switch ($format) {
case self::DATETIME_FORMAT_LONG:
return 'EEEE, MMMM d, y HH:mm:ss';
case self::DATETIME_FORMAT_SHORT:
return 'MMM d, y HH:mm:ss';
case self::DATE_FORMAT_LONG:
return 'EEEE, MMMM d, y';
case self::DATE_FORMAT_DAY_MONTH:
return 'E, MMM d';
case self::DATE_FORMAT_SHORT:
return 'MMM d, y';
case self::DATE_FORMAT_MONTH_SHORT:
return 'MMM y';
case self::DATE_FORMAT_MONTH_LONG:
return 'MMMM y';
case self::DATE_FORMAT_YEAR:
return 'y';
case self::TIME_FORMAT:
return 'HH:mm:ss';
}
return (string)$format;
}
/**
* Returns if time is present as 12 hour clock (eg am/pm)
*
* @return bool
*/
public function uses12HourClock()
{
return false;
}
/**
* Returns interval format pattern for the given format type
*
* @param bool $short whether to return short or long format pattern
* @param string $maxDifference maximal difference in interval dates (Y, M or D)
*
* @return string
*/
public function getRangeFormatPattern($short = false, $maxDifference = 'Y')
{
if ($short) {
return 'MMM d, y – MMM d, y';
}
return 'MMMM d, y – MMMM d, y';
}
}
|