Magento管理员通知

时间:2014-02-11 07:21:38

标签: magento notifications admin


我想在管理区域添加一个通知,类似于“最新消息”栏,但在它下面。 我尝试过使用AdminhtmlNotification模块,但只在“最新消息”队列中添加了一条新消息,如果我的消息不是最后一封,则仅显示在网格中。

提前感谢您的帮助,
丹尼斯雷德勒

1 个答案:

答案 0 :(得分:2)

您所要做的就是在adminhtml布局的通知处理程序下添加自己的块。

<?xml version="1.0"?>
<layout>
    <default>
        <reference name="notifications">
            <block type="extension/adminhtml_notifications" name="extension_notifications" template="extension/notification.phtml"/>
        </reference>
    </default>
</layout>

然后创建并编辑文件扩展名/ notification.phtml:

<?php if ($message = $this->getMessage()) : ?>
    <div class="notification-global">Hello!</div>
<?php endif; ?>

有关更多信息,请查看此文章: https://www.openstream.ch/developer-blog/adding-magento-admin-notifications-to-your-extension/