get_lifterlms_currencies()
Get array of supported currencies
Return Return
(array)
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 ); } |
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. |