Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Magento Custom Module: How to Create Admin menu

Tags:

magento

Finder
Setting

what should be the url to go to system/configuration of our custom module from admin menu setting.

<menu>
 <finder module="finder">
  <title>finder</title>
    <sort_order>71</sort_order>               
      <children>
    <items module="finder">
    <title>Manage Finder</title>
    <sort_order>0</sort_order>
    <action>finder/adminhtml_finder</action>
   </items>
       <items module="finder">
    <title>Setting</title>
    <sort_order>0</sort_order>
    <action> ????  </action>
</items>
  </children>
    </finder>
    </menu>
like image 633
Jack Torris Avatar asked Jul 05 '13 05:07

Jack Torris


1 Answers

Jack you can give action like follow :

<action>adminhtml/system_config/edit/section/your menu item</action>

http://inchoo.net/ecommerce/magento/create-configuration-for-your-magento-extension/ this one is one of the good example.

like image 154
Divya Bhaloidiya Avatar answered Oct 13 '22 01:10

Divya Bhaloidiya