Protected Member Functions | |
_afterSave () |
Definition at line 37 of file Base.php.
_afterSave | ( | ) | [protected] |
Check base currency is available in installed currencies
Reimplemented from Mage_Core_Model_Abstract.
Definition at line 44 of file Base.php.
00045 { 00046 if (!in_array($this->getValue(), $this->_getInstalledCurrencies())) { 00047 Mage::throwException(Mage::helper('adminhtml')->__('Selected base currency is not available in installed currencies')); 00048 } 00049 00050 return $this; 00051 }