class CurrencyBundle extends CurrencyDataProvider implements CurrencyBundleInterface
Default implementation of {@link CurrencyBundleInterface}.
Constants
| INDEX_SYMBOL | |
| INDEX_NAME | |
| INDEX_FRACTION_DIGITS | |
| INDEX_ROUNDING_INCREMENT |
Methods
| __construct(string $path, BundleEntryReaderInterface $reader, LocaleDataProvider $localeProvider) Creates a new currency bundle. | ||
| getCurrencies() | from CurrencyDataProvider | |
| getSymbol($currency, $displayLocale = null) | from CurrencyDataProvider | |
| getName($currency, $displayLocale = null) | from CurrencyDataProvider | |
| getNames($displayLocale = null) | from CurrencyDataProvider | |
| getFractionDigits($currency) Data provider for {@link \Symfony\Component\Intl\Currency::getFractionDigits()}. | ||
| getRoundingIncrement($currency) Data provider for {@link \Symfony\Component\Intl\Currency::getRoundingIncrement()}. | ||
| getNumericCode($currency) Data provider for {@link \Symfony\Component\Intl\Currency::getNumericCode()}. | from CurrencyDataProvider | |
| forNumericCode($numericCode) Data provider for {@link \Symfony\Component\Intl\Currency::forNumericCode()}. | from CurrencyDataProvider | |
| string|null | getCurrencySymbol(string $currency, string $displayLocale = null) Returns the symbol used for a currency. | |
| string|null | getCurrencyName(string $currency, string $displayLocale = null) Returns the name of a currency. | |
| string[] | getCurrencyNames(string $displayLocale = null) Returns the names of all known currencies. | |
| string[] | getLocales() Returns the list of locales that this bundle supports. |
Details
__construct(string $path, BundleEntryReaderInterface $reader, LocaleDataProvider $localeProvider)
Creates a new currency bundle.
getCurrencies()
getSymbol($currency, $displayLocale = null)
getName($currency, $displayLocale = null)
getNames($displayLocale = null)
getFractionDigits($currency)
Data provider for {@link \Symfony\Component\Intl\Currency::getFractionDigits()}.
getRoundingIncrement($currency)
Data provider for {@link \Symfony\Component\Intl\Currency::getRoundingIncrement()}.
getNumericCode($currency)
Data provider for {@link \Symfony\Component\Intl\Currency::getNumericCode()}.
forNumericCode($numericCode)
Data provider for {@link \Symfony\Component\Intl\Currency::forNumericCode()}.
string|null getCurrencySymbol(string $currency, string $displayLocale = null)
Returns the symbol used for a currency.
string|null getCurrencyName(string $currency, string $displayLocale = null)
Returns the name of a currency.
string[] getCurrencyNames(string $displayLocale = null)
Returns the names of all known currencies.
string[] getLocales()
Returns the list of locales that this bundle supports.
Please login to continue.