blob: 63747e4c416b4adb32e00dbe4ac9bbf5dfd0abd4 (
plain)
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
|
<?php
/**
* A class for querying translated currency names from CLDR data.
*
* @author Niklas Laxström
* @author Ryan Kaldari
* @copyright Copyright © 2007-2012
* @license GPL-2.0-or-later
*/
class CurrencyNames extends CldrNames {
private static $cache = [];
/**
* Get localized currency names for a particular language, using fallback languages for missing
* items.
*
* @param string $code The language to return the list in
* @return array an associative array of currency codes and localized currency names
*/
public static function getNames( $code ) {
// Load currency names localized for the requested language
$names = self::loadLanguage( $code );
// Load missing currency names from fallback languages
$fallbacks = Language::getFallbacksFor( $code );
foreach ( $fallbacks as $fallback ) {
// Overwrite the things in fallback with what we have already
$names = array_merge( self::loadLanguage( $fallback ), $names );
}
return $names;
}
/**
* Load currency names localized for a particular language. Helper function for getNames.
*
* @param string $code The language to return the list in
* @return array an associative array of currency codes and localized currency names
*/
private static function loadLanguage( $code ) {
if ( !isset( self::$cache[$code] ) ) {
/* Load override for wrong or missing entries in cldr */
$override = __DIR__ . '/../LocalNames/' . self::getOverrideFileName( $code );
if ( Language::isValidBuiltInCode( $code ) && file_exists( $override ) ) {
$currencyNames = false;
require $override;
// @phan-suppress-next-line PhanImpossibleCondition
if ( is_array( $currencyNames ) ) {
self::$cache[$code] = $currencyNames;
}
}
$filename = __DIR__ . '/../CldrNames/' . self::getFileName( $code );
if ( Language::isValidBuiltInCode( $code ) && file_exists( $filename ) ) {
$currencyNames = false;
require $filename;
// @phan-suppress-next-line PhanImpossibleCondition
if ( is_array( $currencyNames ) ) {
if ( isset( self::$cache[$code] ) ) {
// Add to existing list of localized currency names
self::$cache[$code] = self::$cache[$code] + $currencyNames;
} else {
// No list exists, so create it
self::$cache[$code] = $currencyNames;
}
}
} else {
wfDebug( __METHOD__ . ": Unable to load currency names for $filename\n" );
}
}
return self::$cache[$code] ?? [];
}
}
|