Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-config
Model
Config
Backend
Currency
DefaultCurrency.php
Go to the documentation of this file.
1
<?php
11
namespace
Magento\Config\Model\Config\Backend\Currency
;
12
17
class
DefaultCurrency
extends
AbstractCurrency
18
{
26
public
function
afterSave
()
27
{
28
if
(!in_array($this->getValue(), $this->
_getInstalledCurrencies
())) {
29
throw
new \Magento\Framework\Exception\LocalizedException(
30
__
(
'Sorry, we haven\'t installed the default display currency you selected.'
)
31
);
32
}
33
34
if
(!in_array($this->getValue(), $this->
_getAllowedCurrencies
())) {
35
throw
new \Magento\Framework\Exception\LocalizedException(
36
__
(
'Sorry, the default display currency you selected is not available in allowed currencies.'
)
37
);
38
}
39
40
return
parent::afterSave();
41
}
42
}
Magento\Config\Model\Config\Backend\Currency\AbstractCurrency\_getInstalledCurrencies
_getInstalledCurrencies()
Definition:
AbstractCurrency.php:48
__
__()
Definition:
__.php:13
Magento\Config\Model\Config\Backend\Currency\AbstractCurrency
Definition:
AbstractCurrency.php:20
Magento\Config\Model\Config\Backend\Currency\DefaultCurrency\afterSave
afterSave()
Definition:
DefaultCurrency.php:26
Magento\Config\Model\Config\Backend\Currency
Definition:
AbstractCurrency.php:14
Magento\Config\Model\Config\Backend\Currency\AbstractCurrency\_getAllowedCurrencies
_getAllowedCurrencies()
Definition:
AbstractCurrency.php:27
Magento\Config\Model\Config\Backend\Currency\DefaultCurrency
Definition:
DefaultCurrency.php:17