Boundaries.php
4 years ago
Cast.php
4 years ago
Comparison.php
2 years ago
Converter.php
2 years ago
Creator.php
2 years ago
Date.php
8 months ago
DeprecatedProperties.php
4 years ago
Difference.php
2 years ago
IntervalRounding.php
2 years ago
IntervalStep.php
4 years ago
Localization.php
8 months ago
Macro.php
4 years ago
MagicParameter.php
2 years ago
Mixin.php
2 years ago
Modifiers.php
4 years ago
Mutability.php
4 years ago
ObjectInitialisation.php
4 years ago
Options.php
2 years ago
Rounding.php
2 years ago
Serialization.php
2 years ago
Test.php
8 months ago
Timestamp.php
1 year ago
ToStringFormat.php
3 years ago
Units.php
2 years ago
Week.php
4 years ago
index.php
3 years ago
Options.php
172 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Carbon\Traits; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Carbon\CarbonInterface; |
| 5 | use DateTimeInterface; |
| 6 | use Throwable; |
| 7 | trait Options |
| 8 | { |
| 9 | use Localization; |
| 10 | public static $PHPIntSize = \PHP_INT_SIZE; |
| 11 | protected static $weekStartsAt = CarbonInterface::MONDAY; |
| 12 | protected static $weekEndsAt = CarbonInterface::SUNDAY; |
| 13 | protected static $weekendDays = [CarbonInterface::SATURDAY, CarbonInterface::SUNDAY]; |
| 14 | protected static $regexFormats = [ |
| 15 | 'd' => '(3[01]|[12][0-9]|0[1-9])', |
| 16 | 'D' => '(Sun|Mon|Tue|Wed|Thu|Fri|Sat)', |
| 17 | 'j' => '([123][0-9]|[1-9])', |
| 18 | 'l' => '([a-zA-Z]{2,})', |
| 19 | 'N' => '([1-7])', |
| 20 | 'S' => '(st|nd|rd|th)', |
| 21 | 'w' => '([0-6])', |
| 22 | 'z' => '(36[0-5]|3[0-5][0-9]|[12][0-9]{2}|[1-9]?[0-9])', |
| 23 | 'W' => '(5[012]|[1-4][0-9]|0?[1-9])', |
| 24 | 'F' => '([a-zA-Z]{2,})', |
| 25 | 'm' => '(1[012]|0[1-9])', |
| 26 | 'M' => '([a-zA-Z]{3})', |
| 27 | 'n' => '(1[012]|[1-9])', |
| 28 | 't' => '(2[89]|3[01])', |
| 29 | 'L' => '(0|1)', |
| 30 | 'o' => '([1-9][0-9]{0,4})', |
| 31 | 'Y' => '([1-9]?[0-9]{4})', |
| 32 | 'y' => '([0-9]{2})', |
| 33 | 'a' => '(am|pm)', |
| 34 | 'A' => '(AM|PM)', |
| 35 | 'B' => '([0-9]{3})', |
| 36 | 'g' => '(1[012]|[1-9])', |
| 37 | 'G' => '(2[0-3]|1?[0-9])', |
| 38 | 'h' => '(1[012]|0[1-9])', |
| 39 | 'H' => '(2[0-3]|[01][0-9])', |
| 40 | 'i' => '([0-5][0-9])', |
| 41 | 's' => '([0-5][0-9])', |
| 42 | 'u' => '([0-9]{1,6})', |
| 43 | 'v' => '([0-9]{1,3})', |
| 44 | 'e' => '([a-zA-Z]{1,5})|([a-zA-Z]*\\/[a-zA-Z]*)', |
| 45 | 'I' => '(0|1)', |
| 46 | 'O' => '([+-](1[0123]|0[0-9])[0134][05])', |
| 47 | 'P' => '([+-](1[0123]|0[0-9]):[0134][05])', |
| 48 | 'p' => '(Z|[+-](1[0123]|0[0-9]):[0134][05])', |
| 49 | 'T' => '([a-zA-Z]{1,5})', |
| 50 | 'Z' => '(-?[1-5]?[0-9]{1,4})', |
| 51 | 'U' => '([0-9]*)', |
| 52 | // The formats below are combinations of the above formats. |
| 53 | 'c' => '(([1-9]?[0-9]{4})-(1[012]|0[1-9])-(3[01]|[12][0-9]|0[1-9])T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])[+-](1[012]|0[0-9]):([0134][05]))', |
| 54 | // Y-m-dTH:i:sP |
| 55 | 'r' => '(([a-zA-Z]{3}), ([123][0-9]|0[1-9]) ([a-zA-Z]{3}) ([1-9]?[0-9]{4}) (2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9]) [+-](1[012]|0[0-9])([0134][05]))', |
| 56 | ]; |
| 57 | protected static $regexFormatModifiers = ['*' => '.+', ' ' => '[ ]', '#' => '[;:\\/.,()-]', '?' => '([^a]|[a])', '!' => '', '|' => '', '+' => '']; |
| 58 | protected static $monthsOverflow = \true; |
| 59 | protected static $yearsOverflow = \true; |
| 60 | protected static $strictModeEnabled = \true; |
| 61 | protected static $formatFunction; |
| 62 | protected static $createFromFormatFunction; |
| 63 | protected static $parseFunction; |
| 64 | protected $localMonthsOverflow; |
| 65 | protected $localYearsOverflow; |
| 66 | protected $localStrictModeEnabled; |
| 67 | protected $localHumanDiffOptions; |
| 68 | protected $localToStringFormat; |
| 69 | protected $localSerializer; |
| 70 | protected $localMacros; |
| 71 | protected $localGenericMacros; |
| 72 | protected $localFormatFunction; |
| 73 | public static function useStrictMode($strictModeEnabled = \true) |
| 74 | { |
| 75 | static::$strictModeEnabled = $strictModeEnabled; |
| 76 | } |
| 77 | public static function isStrictModeEnabled() |
| 78 | { |
| 79 | return static::$strictModeEnabled; |
| 80 | } |
| 81 | public static function useMonthsOverflow($monthsOverflow = \true) |
| 82 | { |
| 83 | static::$monthsOverflow = $monthsOverflow; |
| 84 | } |
| 85 | public static function resetMonthsOverflow() |
| 86 | { |
| 87 | static::$monthsOverflow = \true; |
| 88 | } |
| 89 | public static function shouldOverflowMonths() |
| 90 | { |
| 91 | return static::$monthsOverflow; |
| 92 | } |
| 93 | public static function useYearsOverflow($yearsOverflow = \true) |
| 94 | { |
| 95 | static::$yearsOverflow = $yearsOverflow; |
| 96 | } |
| 97 | public static function resetYearsOverflow() |
| 98 | { |
| 99 | static::$yearsOverflow = \true; |
| 100 | } |
| 101 | public static function shouldOverflowYears() |
| 102 | { |
| 103 | return static::$yearsOverflow; |
| 104 | } |
| 105 | public function settings(array $settings) |
| 106 | { |
| 107 | $this->localStrictModeEnabled = $settings['strictMode'] ?? null; |
| 108 | $this->localMonthsOverflow = $settings['monthOverflow'] ?? null; |
| 109 | $this->localYearsOverflow = $settings['yearOverflow'] ?? null; |
| 110 | $this->localHumanDiffOptions = $settings['humanDiffOptions'] ?? null; |
| 111 | $this->localToStringFormat = $settings['toStringFormat'] ?? null; |
| 112 | $this->localSerializer = $settings['toJsonFormat'] ?? null; |
| 113 | $this->localMacros = $settings['macros'] ?? null; |
| 114 | $this->localGenericMacros = $settings['genericMacros'] ?? null; |
| 115 | $this->localFormatFunction = $settings['formatFunction'] ?? null; |
| 116 | if (isset($settings['locale'])) { |
| 117 | $locales = $settings['locale']; |
| 118 | if (!\is_array($locales)) { |
| 119 | $locales = [$locales]; |
| 120 | } |
| 121 | $this->locale(...$locales); |
| 122 | } |
| 123 | if (isset($settings['innerTimezone'])) { |
| 124 | return $this->setTimezone($settings['innerTimezone']); |
| 125 | } |
| 126 | if (isset($settings['timezone'])) { |
| 127 | return $this->shiftTimezone($settings['timezone']); |
| 128 | } |
| 129 | return $this; |
| 130 | } |
| 131 | public function getSettings() |
| 132 | { |
| 133 | $settings = []; |
| 134 | $map = ['localStrictModeEnabled' => 'strictMode', 'localMonthsOverflow' => 'monthOverflow', 'localYearsOverflow' => 'yearOverflow', 'localHumanDiffOptions' => 'humanDiffOptions', 'localToStringFormat' => 'toStringFormat', 'localSerializer' => 'toJsonFormat', 'localMacros' => 'macros', 'localGenericMacros' => 'genericMacros', 'locale' => 'locale', 'tzName' => 'timezone', 'localFormatFunction' => 'formatFunction']; |
| 135 | foreach ($map as $property => $key) { |
| 136 | $value = $this->{$property} ?? null; |
| 137 | if ($value !== null && ($key !== 'locale' || $value !== 'en' || $this->localTranslator)) { |
| 138 | $settings[$key] = $value; |
| 139 | } |
| 140 | } |
| 141 | return $settings; |
| 142 | } |
| 143 | public function __debugInfo() |
| 144 | { |
| 145 | $infos = \array_filter(\get_object_vars($this), static function ($var) { |
| 146 | return $var; |
| 147 | }); |
| 148 | foreach (['dumpProperties', 'constructedObjectId', 'constructed'] as $property) { |
| 149 | if (isset($infos[$property])) { |
| 150 | unset($infos[$property]); |
| 151 | } |
| 152 | } |
| 153 | $this->addExtraDebugInfos($infos); |
| 154 | return $infos; |
| 155 | } |
| 156 | protected function addExtraDebugInfos(&$infos) : void |
| 157 | { |
| 158 | if ($this instanceof DateTimeInterface) { |
| 159 | try { |
| 160 | if (!isset($infos['date'])) { |
| 161 | $infos['date'] = $this->format(CarbonInterface::MOCK_DATETIME_FORMAT); |
| 162 | } |
| 163 | if (!isset($infos['timezone'])) { |
| 164 | $infos['timezone'] = $this->tzName; |
| 165 | } |
| 166 | } catch (Throwable $exception) { |
| 167 | // noop |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | } |
| 172 |