- How to create custom module from scratch in Magento 1.9.x.
- which is the directory structure and which are the files i need to create for creating the simple basic custom module.
-
1You can use this link: silksoftware.com/magento-module-creatorManoj Pal– Manoj Pal2019年11月26日 13:53:29 +00:00Commented Nov 26, 2019 at 13:53
-
I want to develop custom module without using silk software.Deep Shah– Deep Shah2021年04月20日 09:57:55 +00:00Commented Apr 20, 2021 at 9:57
1 Answer 1
You should work with app/code/local directory and there build your module.
Create: app/code/local/Vendor_Name/Module_Name/etc/config.xml with
<?xml version="1.0"?>
<config>
<modules>
<Vendor_Name_Module_Name>
<version>0.0.1</version>
</Vendor_Name_Module_Name>
</modules>
</config>
and create app/etc/modules/_.xml with
<?xml version="1.0"?>
<config>
<modules>
<Vendor_Name_Module_Name>
<active>true</active>
<codePool>local</codePool>
</Vendor_Name_Module_Name>
</modules>
</config>
With this 2 files you should be able to see your module in Magento Admin> System Configuration> Advanced> Advanced
-
thank you, but i want to create custom module for crud operation in magento back-end one new menu as well as admin can view,edit and delete FAQ's will be created and in front-end i need to create one form for FAQ.Deep Shah– Deep Shah2019年11月28日 09:46:48 +00:00Commented Nov 28, 2019 at 9:46
-
1Sure, but you asked about creating simple basic module. I advise you to create a new question with more accurate description :)lama377– lama3772019年11月28日 10:39:54 +00:00Commented Nov 28, 2019 at 10:39
default