0

如何将我的扩展链接(标准研究新闻扩展)从主菜单移动到“促销”菜单?

Magentostudy -> NEWS 扩展有:

<config>
<menu>
     <news translate="title" module="magentostudy_news">
        <title>News</title>
        <sort_order>65</sort_order>
        <children>
            <manage translate="title" module="magentostudy_news">
                <title>Manage News</title>
                <action>adminhtml/news</action>
                <sort_order>50</sort_order>
            </manage>
        </children>
     </news>
</menu>

<acl>
    <resources>
        <admin>
            <children>
                <news translate="title" module="magentostudy_news">
                    <title>News</title>
                    <sort_order>65</sort_order>
                    <children>
                        <manage translate="title">
                            <title>Manage News</title>
                            <sort_order>0</sort_order>
                            <children>
                                <save translate="title">
                                    <title>Save News</title>
                                    <sort_order>0</sort_order>
                                </save>
                                <delete translate="title">
                                    <title>Delete News</title>
                                    <sort_order>10</sort_order>
                                </delete>
                            </children>
                        </manage>
                    </children>
                </news>
                <system>
                    <children>
                        <config>
                            <children>
                                <news translate="title" module="magentostudy_news">
                                    <title>News Management</title>
                                </news>
                            </children>
                        </config>
                    </children>
                </system>
            </children>
        </admin>
    </resources>
</acl>

我知道这段代码的代码提供了一些逻辑来使管理菜单链接到我的扩展程序可见,但是我怎样才能将它移动到“促销”菜单!

我知道这是一项简单的任务,但 Magento 团队编写了“完美”的文档,所以......

4

1 回答 1

0

使用以下代码更新您的菜单部分 xml 代码:

<menu>
 <promo translate="title" module="magentostudy_news">        
    <sort_order>65</sort_order>
    <children>
        <manage translate="title" module="magentostudy_news">
            <title>Manage News</title>
            <action>adminhtml/news</action>
            <sort_order>50</sort_order>
        </manage>
    </children>
 </promo>
</menu>

它将Manage NewsPromotions.

希望会有所帮助!

于 2013-10-31T13:40:12.230 回答