如何在 Magento 中创建 Hello world 扩展?
我想创建我的第一个 Magento 扩展,是否有关于 Magento 的“创建简单的 Hello world 扩展”的教程。同时,如果我在 Google 中找到任何此类教程,我将在此发布。
I would like to create my first Magento extension, is there any tutorial about "Creating simple Hello world extension" for Magento. In mean time if i find any such tutorial in Google, I will post in this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个简单的 Hello World 模块创建教程:- http://magento4u.wordpress.com/2009/06/08/create-new-module-helloworld-in-magento/
此外,您可以使用模块创建器进行简单的初始模块设置:- < a href="http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/custom_module_with_custom_database_table" rel="nofollow noreferrer">http://www.magentocommerce.com/wiki/5__-_modules_and_development/0_ -_module_development_in_magento/custom_module_with_custom_database_table
Here is a simple Hello World module creation tutorial:- http://magento4u.wordpress.com/2009/06/08/create-new-module-helloworld-in-magento/
Furthermore, you can use module creator for easy and initial module setup:- http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/custom_module_with_custom_database_table
对于初学者来说,最好的一篇是 Smashing 杂志的这篇文章:http://coding.smashingmagazine.com/2012/03/01/basics-creating-magento-module/
For beginners the best one out there, is this article from Smashing Magazine: http://coding.smashingmagazine.com/2012/03/01/basics-creating-magento-module/
app/etc/modules
中声明您的扩展app/code
中。您可以在Company_Module
中声明哪个目录app/design/frontend/default/default
中创建布局。app/etc/modules
app/code
. which directory you can declare in yourCompany_Module
app/design/frontend/default/default
.