get_lifterlms_currencies()
Get array of supported currencies
Return Return
(array)
Source Source
File: includes/functions/llms.functions.currency.php
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 ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Use currency list provided in languages/currencies.php . |
3.0.0 | Introduced. |