I'm working on a new Magneto module. How can I add a new item to my left menu magento admin panel in customer information with a page that shows some data?
1
votes
1 Answers
2
votes
Take a look @ Add Custom Tabs to the Magento Product Admin
You will need to update app/design/adminhtml/default/default/layout/customtabs.xml to
<layout version="0.1.0">
<adminhtml_customer_edit>
<reference name="customer_edit_tabs">
<action method="addTab">
<name>customer_edit_tab_action</name>
<block>customertab/adminhtml_customer_edit_tab_action</block>
</action>
</reference>
</adminhtml_customer_edit>
</layout>
then change the class name accordingly
Also see How to Add Custom Tabs to Magento Customer Edit page