Created
November 15, 2016 20:14
-
-
Save pstuifzand/e94b9dc3969e383743f5c485a8a308a6 to your computer and use it in GitHub Desktop.
Projections for Magento
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Model/*.php": { "type": "model" }, | |
"Model/Resource/*.php": { "type": "resource" }, | |
"Block/*.php": { "type": "block" }, | |
"Helper/*.php": { | |
"type": "helper", | |
"template": [ | |
"<?php", | |
"", | |
"class extends Mage_Core_Helper_Abstract", | |
"{", | |
"}" | |
] | |
}, | |
"controllers/*.php|Controller/*.php": { "type": "controller" }, | |
"etc/config.xml": { "type": "config" }, | |
"etc/system.xml": { "type": "system" }, | |
"etc/adminhtml.xml": { "type": "adminhtml" }, | |
"sql/*.php": { | |
"type": "sql", | |
"template": [ | |
"<?php", | |
"", | |
"$installer = $this;", | |
"$installer->startSetup();", | |
"", | |
"$installer->endSetup();" | |
] | |
}, | |
"data/*.php": { "type": "data" } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment