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.
Solved! Go to Solution.
add something slimilar like this
<menu> <cms> <children> <feedback translate="title" module="your_module"> <title>your title</title> <action>your/action/path</action> <sort_order>100</sort_order> </feedback > </children> </cms> </menu>
to adminhtml.xml in your custom module etc folder
add something slimilar like this
<menu> <cms> <children> <feedback translate="title" module="your_module"> <title>your title</title> <action>your/action/path</action> <sort_order>100</sort_order> </feedback > </children> </cms> </menu>
to adminhtml.xml in your custom module etc folder
Thank you very much