Clipmarks
hos12stfollowshare
5-22-2009 12:58 AM
1388 views
hos12st says:
I’ve created a custom module and placed it under “local” directory. ’ve searched lots in the forum but have not found any good solution anywhere..
1 Comment   | Add a Comment
5-28-2009 10:00 AM
bpatterson
That's a simple part. In your config.xml file of your local module, you need to add the following bit of XML:

<config>
<adminhtml>
<menu>
<mymodule translate="title" module="mymodule">
<title>My Module Title</title>
<sort_order>35</sort_order><!-- After Catalog -->
<children>
<something module="mymodule">
<title>My Action</title>
<action>URL</action>
</something>
</children>
</mymodule>
</menu>
</adminhtml>
</config>

Replace "mymodule" with your friendly module name (i.e. Cms, becomes cms). Change the sort order to fit your fancy (before or after a specific item). Note that each default item is it's currents spot times 10. So "Dashboard" is in spot 1 (1* 10 = sort_order: 10), Catalog ...
Login to Comment.  Not a member yet? Sign up
Embed This Clip In Your Site...

New from the makers of Clipmarks:  Amplify.com - Don't just share the news...Amplify it!

OK