Piwik\Plugins\SitesManager\API::getCurrencyList PHP Метод

getCurrencyList() публичный Метод

Returns the list of supported currencies
См. также: getCurrencySymbols()
public getCurrencyList ( ) : array
Результат array ( currencyId => currencyName)
    public function getCurrencyList()
    {
        $currencies = Site::getCurrencyList();
        return array_map(function ($a) {
            return $a[1] . " (" . $a[0] . ")";
        }, $currencies);
    }