如何在magento管理面板中显示信息框?

时间:2016-01-07 07:08:46

标签: magento

我正在尝试使用以下代码来显示信息框:

Mage::getSingleton(’core/session’)->addError('***'); 

这显示错误消息。

但是,我想要显示一个信息框而不是错误信息。

1 个答案:

答案 0 :(得分:1)

您可以使用以下代码显示不同的消息。

要显示通知消息框:

.to-be-animated {
  opacity: 0;
}

.to-be-animated.animated {
  opacity: 1;
}

要显示成功消息框:

Mage::getSingleton('core/session')->addNotice('Notice message');

要显示错误消息框:

Mage::getSingleton('core/session')->addSuccess('Success message'); 

要显示警告消息框(仅限管理员):

Mage::getSingleton('core/session')->addError('Error message');