如何在magento管理菜单中为CMS选择添加自定义选项卡

时间:2015-06-10 17:36:02

标签: php magento magento-1.9

请帮帮我。 我有我的模块 - 反馈。我想在magento管理菜单中为CMS选择添加选项卡,就像这个CMS->反馈。

在此标签中,我想显示收到消息的网格。

1 个答案:

答案 0 :(得分:1)

将此代码写入模块config.xml文件中。

<config>
     <adminhtml>
       <menu>
         <cms>
             <children>
                 <feedback module="feedback">
                     <title>Feedback</title>
                     <sort_order>10</sort_order>
                     <action>feedback/adminhtml_feedback</action>
                 </feedback >
             </children>
        </cms>

    </menu>
    </adminhtml>
</config>
相关问题