0

我在下面的路径中为 meagento 通知消息定制了新样式/app/code/core/Mage/Core/Block/Messages.php

下面的代码是我定制的

public function getGroupedHtml()
    { 

        $types = array(
            Mage_Core_Model_Message::ERROR,
            Mage_Core_Model_Message::WARNING,
            Mage_Core_Model_Message::NOTICE,
            Mage_Core_Model_Message::SUCCESS
        );
       $html = '';
        foreach ($types as $type) {
            if ( $messages = $this->getMessages($type) ) 
            {               

                foreach ( $messages as $message ) 
                {
                    $html.= '<div class="ml-alert-2-'.$type.'">';
                    $html.= '<div class="style-2-icon '.$type.'"></div>';
                    $html.= ($this->_escapeMessageFlag) ? $this->htmlEscape($message->getText()) : $message->getText();
                    $html.= '<div class="style-2-close '.$type.'" onclick="this.parentNode.parentNode.removeChild(this.parentNode);"></div>';
                    $html.= '</div>';
                }

            }
        }


        return $html;
    }

我已经替换了上述功能中的默认 Magento 主题,通知主题在前端工作正常,但未应用管理面板通知主题..

那么如何在上面的函数中找到像(管理员消息,前端消息)这样的消息类型?

请建议我?

谢谢大家。

4

1 回答 1

1

前端和后端消息由不同的块类处理。您正在编辑的代码仅用于 Magento 的前端。如果您希望自定义后端消息,您将需要编辑/重载不同的类,即Mage_Adminhtml_Block_Messages(位于 中/app/code/core/Mage/Adminhtml/Block/Messages.php)。

于 2012-10-02T12:03:58.427 回答