Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <config>
  2. <menu>
  3. <your_module_name module="your_module_name">
  4. <title>Your Module Name</title>
  5. <sort_order>100</sort_order>
  6. <children>
  7. <new module="your_module_name" translate="title">
  8. <title>Add New Article</title>
  9. <sort_order>0</sort_order>
  10. <action>your_module_name_admin/manage/new</action>
  11. </new>
  12. <list module="your_module_name" translate="title">
  13. <title>Articles</title>
  14. <sort_order>10</sort_order>
  15. <action>your_module_name_admin/manage/index</action>
  16. </list>
  17. <settings translate="title" module="your_module_name">
  18. <title>Settings</title>
  19. <action>adminhtml/system_config/edit/section/your_module_name</action>
  20. <sort_order>40</sort_order>
  21. </settings>
  22. </children>
  23. </your_module_name>
  24. </menu>
  25. <acl>
  26. <resources>
  27. <all>
  28. <title>Allow Everything</title>
  29. </all>
  30. <admin>
  31. <children>
  32. <your_module_name>
  33. <title>Your Module Name</title>
  34. <sort_order>70</sort_order>
  35. <children>
  36. <new>
  37. <title>Create New Article</title>
  38. <sort_order>0</sort_order>
  39. </new>
  40. <list>
  41. <title>View & Edit Articles</title>
  42. <sort_order>1</sort_order>
  43. </list>
  44. </children>
  45. </your_module_name>
  46. <system>
  47. <children>
  48. <config>
  49. <children>
  50. <your_module_name>
  51. <title>Config Section Under System --> Configuration If Your Module Has One</title>
  52. </your_module_name>
  53. </children>
  54. </config>
  55. </children>
  56. </system>
  57. </children>
  58. </admin>
  59. </resources>
  60. </acl>
  61. </config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement