I am very new to Magento , just started Magento before 4 days, but I was entrusted with the development of Magento extension . Therefore, I read through the Internet and create it.
Now the problem is that I want to add custom tabs in the left sidebar, just like in the System->Configuration section.
I tried a lot, but did not succeed. Please help me.
Here is my config.xml
<?xml version="1.0"?> <config> <modules> <Gwb_Magecrmsync> <version>0.1.0</version> </Gwb_Magecrmsync> </modules> <frontend> <routers> <magecrmsync> <use>standard</use> <args> <module>Gwb_Magecrmsync</module> <frontName>magecrmsync</frontName> </args> </magecrmsync> </routers> <layout> <updates> <magecrmsync> <file>adminhtml.xml</file> </magecrmsync> </updates> </layout> </frontend> <admin> <routers> <magecrmsync> <use>admin</use> <args> <module>Gwb_Magecrmsync</module> <frontName>magecrmsync</frontName> </args> </magecrmsync> </routers> </admin> <adminhtml> <menu> <menu1 translate="title" module="magecrmsync"> <title>Synchronize</title> <sort_order>999</sort_order> <children> <menuitem1 module="magecrmsync"> <title>Customers</title> <action>magecrmsync/adminhtml_magecrmsync</action> </menuitem1> <menuitem2 module="magecrmsync"> <title>Orders</title> <action>magecrmsync/adminhtml_magecrmsync</action> </menuitem2> <menuitem3 module="magecrmsync"> <title>Products</title> <action>magecrmsync/adminhtml_magecrmsync</action> </menuitem3> </children> </menu1> </menu> <acl> <resources> <admin> <children> <menu1 translate="title" module="magecrmsync"> <title>Synchronize</title> <sort_order>999</sort_order> <children> <menuitem1> <title>Customers</title> </menuitem1> <menuitem2> <title>Orders</title> </menuitem2> <menuitem3> <title>Products</title> </menuitem3> </children> </menu1> </children> </admin> </resources> </acl> </adminhtml> <global> <models> <magecrmsync> <class>Gwb_Magecrmsync_Model</class> <resourceModel>Magecrmsync_mysql4</resourceModel> </magecrmsync> </models> <resources> <magecrmsync_setup> <use>default_setup</use> </magecrmsync_setup> <magecrmsync_write> <use>default_write</use> </magecrmsync_write> <magecrmsync_read> <use>default_read</use> </magecrmsync_read> </resources> <blocks> <magecrmsync> <class>Gwb_Magecrmsync_Block</class> </magecrmsync> </blocks> <helpers> <magecrmsync> <class>Gwb_Magecrmsync_Helper</class> </magecrmsync> </helpers> <layout> <magecrmsync> <file>adminhtml.xml</file> </magecrmsync> </layout> </global> </config>
Please tell me where I am missing something that does not allow me to add tabs on the left of my page. Please correct me if I'm wrong somewhere.
<b> Change
This is my system.xml file. This allows me to add a custom tab to System-> Configuration, but I want it on my custom page, which is separate, and then in the configuration menu.
<?xml version="1.0"?> <config> <tabs> <sidetab translate="label" module="magecrmsync"> <label>My Custom Tab</label> <sort_order>200</sort_order> </sidetab> </tabs> <sections> <sidetab translate="label" module="magecrmsync"> <class>separator-top</class> <label>My Tab</label> <tab>sidetab</tab> <sort_order>100</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> <groups> <sidetab_option translate="label"> <label>sysem Tab Options</label> <frontend_type>text</frontend_type> <sort_order>10</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> <fields> <registration_mode translate="label"> <label>On New User Signup</label> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> <sort_order>1</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> </registration_mode> <forget_mode translate="label"> <label>Send Email on Forget Password</label> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> <sort_order>1</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> </forget_mode> <purchase_mode translate="label"> <label>Send Email On Product Purchase</label> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> <sort_order>1</sort_order> <show_in_default>1</show_in_default> <show_in_website>1</show_in_website> <show_in_store>1</show_in_store> </purchase_mode> </fields> </sidetab_option> </groups> </sidetab> </sections> </config>
My controller code:
<?php class Gwb_Magecrmsync_Adminhtml_MagecrmsyncController extends Mage_Adminhtml_Controller_Action { public function indexAction() { $this->loadLayout() ->_setActiveMenu('menu1') ->_addBreadcrumb(Mage::helper('adminhtml')->__('Synchronize Data'), Mage::helper('adminhtml')->__('Synchronize Data')) ->_title($this->__('Synchronize Data')); $block = $this->getLayout()->createBlock( 'Mage_Core_Block_Template', 'my_block_name_here', array('template' => 'magecrmsync/mainblock.phtml') ); $this->getLayout()->getBlock('content')->append($block); $this->renderLayout(); } }
I want to add tabs on my page like this:

Any help would be greatly appreciated and would be helpful to me.
Thanks Ravinder
source share