ashsmith / magento2-controller-module
A basic Magento 2 module with a controller
Installs: 184
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 4
Forks: 12
Open Issues: 0
Type:magento2-module
Requires
- php: ~5.5.0|~5.6.0
- magento/magento-composer-installer: *
This package is auto-updated.
Last update: 2025-03-26 05:20:06 UTC
README
#Magento 2 Controller Module Example
From my blog post: https://www.ashsmith.io/2014/12/simple-magento2-controller-module/
To install:
Install with Composer!
composer require ashsmith/magento2-controller-module:2.0.*
Then you'll need to modify app/etc/config.php
to activate the module. It should look a little like this:
<?php
return array (
'modules' =>
array (
...
'Ashsmith_HelloWorld' => 1,
),
);