เมนูส่วนขยายวีโอไอพี

ฉันจะย้ายลิงก์ส่วนขยาย (ส่วนขยายข่าวการศึกษามาตรฐาน) จากเมนูหลักไปยังเมนู "โปรโมชัน" ได้อย่างไร

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>

I know that code this code provide some logic to make admin menu link to my extension visible, bu HOW can I move it to "Promotions" menu!

ฉันรู้ว่านั่นเป็นงานง่ายๆ แต่ทีมงาน Magento เขียนเอกสารที่ "สมบูรณ์แบบ" ดังนั้น ...


person Lubomur Marshal    schedule 31.10.2013    source แหล่งที่มา


คำตอบ (1)


อัปเดตโค้ด 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 News ใต้ Promotions

หวังว่าจะช่วยได้!

person Rajiv Ranjan    schedule 31.10.2013
comment
แต่อย่างไร? มันทำงานยังไงบ้าง? ฉันไม่พบโปรโมชั่นในรหัสนี้! - person Lubomur Marshal; 31.10.2013
comment
@LubomurMarshal, Magento ใช้ <promo> สำหรับโมดูลการส่งเสริมการขาย หากวิธีนี้ใช้ได้ผล คุณสามารถทำเครื่องหมายว่ามีประโยชน์ได้หรือไม่ - person Rajiv Ranjan; 31.10.2013
comment
ชื่อเสียงของฉันคือ 10, 15 ต้องการ! - person Lubomur Marshal; 01.11.2013