blob: 29a59790643d19d9415d480a2719151191c77d2e (
plain) (
blame)
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
|
<?php
namespace CommerceGuys\Intl\NumberFormat;
use CommerceGuys\Intl\LocaleResolverTrait;
/**
* Repository for number formats based on JSON definitions.
*/
class NumberFormatRepository implements NumberFormatRepositoryInterface
{
use LocaleResolverTrait;
/**
* Number format definitions.
*
* @var array
*/
protected $definitions = array();
/**
* Creates a NumberFormatRepository instance.
*
* @param string $definitionPath The path to the number format definitions.
* Defaults to 'resources/number_format'.
*/
public function __construct($definitionPath = null)
{
$this->definitionPath = $definitionPath ? $definitionPath : __DIR__ . '/../../resources/number_format/';
}
/**
* {@inheritdoc}
*/
public function get($locale, $fallbackLocale = null)
{
$locale = $this->resolveLocale($locale, $fallbackLocale);
if (!isset($this->definitions[$locale])) {
$filename = $this->definitionPath . $locale . '.json';
$this->definitions[$locale] = json_decode(file_get_contents($filename), true);
}
return $this->createNumberFormatFromDefinition($this->definitions[$locale], $locale);
}
/**
* Creates a number format object from the provided definition.
*
* @param array $definition The number format definition.
* @param string $locale The locale of the number format definition.
*
* @return NumberFormat
*/
protected function createNumberFormatFromDefinition(array $definition, $locale)
{
if (!isset($definition['decimal_separator'])) {
$definition['decimal_separator'] = '.';
}
if (!isset($definition['grouping_separator'])) {
$definition['grouping_separator'] = ',';
}
if (!isset($definition['plus_sign'])) {
$definition['plus_sign'] = '+';
}
if (!isset($definition['minus_sign'])) {
$definition['minus_sign'] = '-';
}
if (!isset($definition['percent_sign'])) {
$definition['percent_sign'] = '%';
}
$numberFormat = new NumberFormat();
$numberFormat->setLocale($locale);
$numberFormat->setNumberingSystem($definition['numbering_system']);
$numberFormat->setDecimalSeparator($definition['decimal_separator']);
$numberFormat->setGroupingSeparator($definition['grouping_separator']);
$numberFormat->setPlusSign($definition['plus_sign']);
$numberFormat->setMinusSign($definition['minus_sign']);
$numberFormat->setPercentSign($definition['percent_sign']);
$numberFormat->setDecimalPattern($definition['decimal_pattern']);
$numberFormat->setPercentPattern($definition['percent_pattern']);
$numberFormat->setCurrencyPattern($definition['currency_pattern']);
$numberFormat->setAccountingCurrencyPattern($definition['accounting_currency_pattern']);
return $numberFormat;
}
}
|