get_lifterlms_currencies()

Get array of supported currencies


Return Return

(array)


Top ↑

Source Source

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

76
77
78
79
80
81
82
83
84
85
86
87
88
89
function get_lifterlms_currencies() {
 
    $currencies = require LLMS_PLUGIN_DIR . 'languages/currencies.php';
 
    /**
     * Filters the list of available currencies
     *
     * @since Unknown
     *
     * @param array $currencies A list of currency codes to currency names. See "languages/currencies.php" for details.
     */
    return apply_filters( 'lifterlms_currencies', $currencies );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Use currency list provided in languages/currencies.php.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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