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

648 views Asked by At

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.

1

There are 1 answers

0
yogesh karodiya On BEST ANSWER

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>