Last active
January 1, 2016 08:29
-
-
Save xcommerce-gists/8119009 to your computer and use it in GitHub Desktop.
Magento simple Hello World extension: Sample layout
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: Sample layout | |
* | |
* Sample layout for the simple Hello World extension | |
* provided for documentation purposes in the | |
* Magento 1.x Extension Developer's Guide | |
* | |
* @copyright Copyright (c) 2014 eBay Inc. (http://www.magentocommerce.com) | |
*/ | |
--> | |
<?xml version="1.0"?> | |
<layout version="0.1.0"> | |
<default> | |
</default> | |
<hello_index_index> | |
<reference name="content"> | |
<block before="-" type="hello/hello" name="hello" template="hello/hello.phtml" /> | |
</reference> | |
</hello_index_index> | |
<hello_index_hello> | |
<reference name="content"> | |
<block before="-" type="hello/hello" name="hello" template="hello/hello.phtml" /> | |
</reference> | |
</hello_index_hello> | |
<customer_account_login> | |
<reference name="content"> | |
<block before="-" type="hello/hello" name="hello" template="hello/hello.phtml" /> | |
</reference> | |
</customer_account_login> | |
</layout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment