简体   繁体   中英

How to add custom tab to CMS selection in magento admin menu

Please help me. I have my module - Feedback. I want to add tab to CMS selection in magento admin menu, that would be like this CMS->Feedback.

In this tab I want show grid of received messages.

Write this code in your module config.xml file.

<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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM