ashsmith / magento2-controller-module
一个带有控制器的基本 Magento 2 模块
2.0.1
2015-08-15 16:02 UTC
Requires
- php: ~5.5.0|~5.6.0
- magento/magento-composer-installer: *
This package is auto-updated.
Last update: 2024-09-26 04:12:35 UTC
README
# Magento 2 控制器模块示例
来自我的博客文章:https://www.ashsmith.io/2014/12/simple-magento2-controller-module/
安装
使用 Composer 安装!
composer require ashsmith/magento2-controller-module:2.0.*
然后您需要修改 app/etc/config.php
来激活该模块。它可能看起来像这样
<?php
return array (
'modules' =>
array (
...
'Ashsmith_HelloWorld' => 1,
),
);