Skip to content

Instantly share code, notes, and snippets.

@xcommerce-gists
Last active January 1, 2016 01:59
Show Gist options
  • Save xcommerce-gists/8076155 to your computer and use it in GitHub Desktop.
Save xcommerce-gists/8076155 to your computer and use it in GitHub Desktop.
Magento simple Hello World extension: Application configuration file
<!--
/**
* 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