- /**
- * Generate options for currency displaying with custom currency symbol
- *
- * @param \Magento\Framework\Event\Observer $observer
- * @return $this
- */
- public function execute(\Magento\Framework\Event\Observer $observer)
- {
- $baseCode = $observer->getEvent()->getBaseCode();
- $currencyOptions = $observer->getEvent()->getCurrencyOptions();
- $currencyOptions->setData($this->getCurrencyOptions($baseCode));
-
- return $this;
- }