3

I'm developing magento module.I would like to add menu in admin section.

like.

admin-> catalog -> Attributes -> Manage Attribute-> Here mymenu

Magento version 1.5.1.0

How can i do this ?

1 Answer 1

16

in your module's adminhtml.xml put the following:

    <config>
        <menu>
            <catalog>
                <children>
                    <attributes>
                        <children>
                            <attributes>
                                <children>
                                    <submenu translate="title" module="catalog">
                                        <title>submenu submenu</title>
                                        <action>adminhtml/catalog_product_attribute_submenu/</action>
                                    </submenu>
                                </children>
                            </attributes>
                        </children>
                    </attributes>
                </children>
            </catalog>
        </menu>
    </config>
Sign up to request clarification or add additional context in comments.

1 Comment

:This is awesome thank you so much.i don't have double upvote

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.