2014-02-11 185 views
0


我想在管理區域添加通知,例如「最新消息」欄,但在其下。 我曾嘗試使用AdminhtmlNotification模塊,但僅向「最新消息」隊列中添加新消息,並且如果我的消息不是最後一個消息,只會在網格中顯示。Magento管理員通知

預先感謝您的幫助,
丹尼斯Rendler

回答

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/