- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2015
10:53 AM
06-10-2015
10:53 AM
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.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2015
11:49 AM
06-10-2015
11:49 AM
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
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2015
11:49 AM
06-10-2015
11:49 AM
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2015
12:07 PM
06-10-2015
12:07 PM
Re: How to add custom tab to CMS selection in magento admin menu
Thank you very much