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

getCurrencySymbols() public method

Returns the list of currency symbols
See also: getCurrencyList()
public getCurrencySymbols ( ) : array(
return array(
    public function getCurrencySymbols()
    {
        $currencies = Site::getCurrencyList();
        return array_map(function ($a) {
            return $a[0];
        }, $currencies);
    }