CurrencyΒΆ
Default behavior for currency handling is as follows:
- The user defines the currency he wants to use in its application config file (see
app/config/sonata/sonata_price.yaml). The possible values are defined according to ISO 4217 standard. - Each component/bundle in the e-commerce solution then relays on the
CurrencyDetector::getCurrency()method to select the correct currency (overridable, see Price) - The detector is based on the
CurrencyManager::findOneByLabel()method (overridable, see Price)
Which means that you can:
- Select any supported currency in the configuration.
- Override the
CurrencyManagerto change the currency list handling (get it from a webservice or database for instance). - Override the
CurrencyDetectorto change the way the currency is selected.