Piwik\Plugins\SitesManager\API::getCurrencyList PHP Method

getCurrencyList() public method

Returns the list of supported currencies
See also: getCurrencySymbols()
public getCurrencyList ( ) : array
return array ( currencyId => currencyName)
    public function getCurrencyList()
    {
        $currencies = Site::getCurrencyList();
        return array_map(function ($a) {
            return $a[1] . " (" . $a[0] . ")";
        }, $currencies);
    }