WPCS - WordPress Currency Switcher Professional

wpcs_currency_symbols

Hook in public function init_currency_symbols which allows manipulate by currency symbols in the plugin.

public function init_currency_symbols()
    {        
        $this->currency_symbols = array(
            '$', '€', '¥', 'руб.', 'грн.', '₩',
            'TL', 'د.إ', '৳', 'R$', 'лв.',
            'kr', 'R', 'Kč', 'RM', 'kr.', 'Ft',
            'Rp', 'Rs', 'Kr.', '₪', '₱', 'zł', 'kr',
            'CHF', 'NT$', '฿', '£', 'lei', '₫',
            '₦', 'Kn', '-----'
        );

        $this->currency_symbols = apply_filters('wpcs_currency_symbols', array_merge($this->currency_symbols, $this->get_customer_signs()));
    }