cancel
Showing results for 
Search instead for 
Did you mean: 

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

SOLVED

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

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

Accepted Solutions

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

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

View solution in original post

2 REPLIES 2

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

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

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

Thank you very much