Last active
January 1, 2016 01:59
-
-
Save xcommerce-gists/8076155 to your computer and use it in GitHub Desktop.
Magento simple Hello World extension: Application configuration file
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
<!-- | |
/** | |
* Magento simple Hello World extension: Application configuration file | |
* | |
* Specifies the extension's namespace (Tutorials_HelloWorld), | |
* that the extension is active, and is in the community | |
* code pool. Provided for documentation purposes for the | |
* Magento 1.x Extension Developer's Guide | |
* | |
* @copyright Copyright (c) 2014 eBay Inc. (http://www.magentocommerce.com) | |
*/ | |
--> | |
<?xml version="1.0"?> | |
<config> | |
<modules> | |
<Tutorials_Hello> | |
<active>true</active> | |
<codePool>community</codePool> | |
</Tutorials_Hello> | |
</modules> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment