Home
last modified time | relevance | path

Searched refs:IntlDateFormatter (Results 1 – 4 of 4) sorted by relevance

/plugin/combo/ComboStrap/
H A DIso8601Date.php8 use IntlDateFormatter; alias
23 public const TIME_FORMATTER_TYPE = IntlDateFormatter::NONE;
24 public const DATE_FORMATTER_TYPE = IntlDateFormatter::TRADITIONAL;
198 return IntlDateFormatter::NONE;
200 return IntlDateFormatter::FULL;
202 return IntlDateFormatter::RELATIVE_FULL;
204 return IntlDateFormatter::LONG;
206 return IntlDateFormatter::RELATIVE_LONG;
208 return IntlDateFormatter::MEDIUM;
210 return IntlDateFormatter::RELATIVE_MEDIUM;
[all …]
H A DPipelineUtility.php15 use IntlDateFormatter; alias
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
DIntl.php47 'none' => IntlDateFormatter::NONE,
48 'short' => IntlDateFormatter::SHORT,
49 'medium' => IntlDateFormatter::MEDIUM,
50 'long' => IntlDateFormatter::LONG,
51 'full' => IntlDateFormatter::FULL,
55 $formatter = IntlDateFormatter::create(
60 … 'gregorian' === $calendar ? IntlDateFormatter::GREGORIAN : IntlDateFormatter::TRADITIONAL,
67 $formatter = IntlDateFormatter::create(
72 'gregorian' === $calendar ? IntlDateFormatter::GREGORIAN : IntlDateFormatter::TRADITIONAL,
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
Dintl.rst29 Internally, Twig uses the PHP `IntlDateFormatter::create()`_ function for
37 * 'none': `IntlDateFormatter::NONE`_
38 * 'short': `IntlDateFormatter::SHORT`_
39 * 'medium': `IntlDateFormatter::MEDIUM`_
40 * 'long': `IntlDateFormatter::LONG`_
41 * 'full': `IntlDateFormatter::FULL`_
54 which corresponds to IntlDateFormatter::GREGORIAN. Choose one of these formats:
56 * 'gregorian': `IntlDateFormatter::GREGORIAN`_
57 * 'traditional': `IntlDateFormatter::TRADITIONAL`_
139 .. _`IntlDateFormatter::create()`: http://php.net/manual/en/intldateformatter.create.php
[all …]