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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Setup;
use Magento\Framework\Locale\Bundle\CurrencyBundle;
use Magento\Framework\Locale\Bundle\LanguageBundle;
use Magento\Framework\Locale\Bundle\RegionBundle;
use Magento\Framework\Locale\ConfigInterface;
use Magento\Framework\Locale\Resolver;
class Lists
{
/**
* List of allowed locales
*
* @var array
*/
protected $allowedLocales;
/**
* List of allowed currencies
*
* @var array
*/
private $allowedCurrencies;
/**
* @param ConfigInterface $localeConfig
*/
public function __construct(ConfigInterface $localeConfig)
{
$this->allowedLocales = $localeConfig->getAllowedLocales();
$this->allowedCurrencies = $localeConfig->getAllowedCurrencies();
}
/**
* Retrieve list of timezones
*
* @param bool $doSort
* @return array
*/
public function getTimezoneList($doSort = true)
{
$zones = \DateTimeZone::listIdentifiers(\DateTimeZone::ALL);
$list = [];
foreach ($zones as $code) {
$list[$code] = \IntlTimeZone::createTimeZone($code)->getDisplayName(
false,
\IntlTimeZone::DISPLAY_LONG,
Resolver::DEFAULT_LOCALE
) . ' (' . $code . ')';
}
if ($doSort) {
asort($list);
}
return $list;
}
/**
* Retrieve list of currencies
*
* @return array
*/
public function getCurrencyList()
{
$currencies = (new CurrencyBundle())->get(Resolver::DEFAULT_LOCALE)['Currencies'];
$list = [];
foreach ($currencies as $code => $data) {
$isAllowedCurrency = array_search($code, $this->allowedCurrencies) !== false;
if (!$isAllowedCurrency) {
continue;
}
$list[$code] = $data[1] . ' (' . $code . ')';
}
asort($list);
return $list;
}
/**
* Retrieve list of locales
*
* @return array
*/
public function getLocaleList()
{
$languages = (new LanguageBundle())->get(Resolver::DEFAULT_LOCALE)['Languages'];
$countries = (new RegionBundle())->get(Resolver::DEFAULT_LOCALE)['Countries'];
$locales = \ResourceBundle::getLocales('') ?: [];
$list = [];
foreach ($locales as $locale) {
if (!in_array($locale, $this->allowedLocales)) {
continue;
}
$language = \Locale::getPrimaryLanguage($locale);
$country = \Locale::getRegion($locale);
if (!$languages[$language] || !$countries[$country]) {
continue;
}
$list[$locale] = $languages[$language] . ' (' . $countries[$country] . ')';
}
asort($list);
return $list;
}
}