llms_get_currency_symbols()

Retrieve a list of available currency symbols


Description Description

Retrieves the symbols list from languages/currency-symbols.php.


Top ↑

Return Return

(array) Array of currency codes to their symbols. Any non-Latin characters found in a symbol are returned as an HTML character entity code.


Top ↑

Source Source

File: includes/functions/llms.functions.currency.php

204
205
206
207
208
209
210
211
212
213
214
215
216
217
function llms_get_currency_symbols() {
 
    $symbols = require LLMS_PLUGIN_DIR . 'languages/currency-symbols.php';
 
    /**
     * Filters the list of currency symbols
     *
     * @since Unknown
     *
     * @param array $symbols List of currency codes to their symbol. See "languages/currency-symbols.php" for details.
     */
    return apply_filters( 'lifterlms_currency_symbols', $symbols );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.