Created
January 24, 2014 18:38
-
-
Save xcommerce-gists/8603389 to your computer and use it in GitHub Desktop.
Portion of Magento adminhtml.xml showing how to configure menus and ACL
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
<!-- Only lines 26 through 44 are shown --> | |
<news translate="title" module="magentostudy_news"> | |
<title>News</title> | |
<sort_order>65</sort_order> | |
<children> | |
<manage translate="title"> | |
<title>Manage News</title> | |
<sort_order>0</sort_order> | |
<children> | |
<save translate="title"> | |
<title>Save News</title> | |
<sort_order>0</sort_order> | |
</save> | |
<delete translate="title"> | |
<title>Delete News</title> | |
<sort_order>10</sort_order> | |
</delete> | |
</children> | |
</manage> | |
</children> | |
</news> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment