如何在magento中对货币选择事件执行操作?

时间:2014-03-27 17:11:18

标签: magento

我在标题中有一个货币选择选项,如果用户选择美元,我想显示一条消息。我不知道如何阅读这个事件。 我对magento很新,任何帮助都会非常感激。

感谢。

1 个答案:

答案 0 :(得分:1)

在文件magento\app\code\core\Mage\Directory\controllers\CurrencyController.php

中进行更改

功能改变

 public function switchAction()
        {
            if ($curency = (string) $this->getRequest()->getParam('currency')) {

             // add message   
             if($curency=="USD")
                Mage::getSingleton('core/session')->addSuccess("your message"); 

                Mage::app()->getStore()->setCurrentCurrencyCode($curency);
            }
            $this->_redirectReferer(Mage::getBaseUrl());
        }