Here's the situation:
I would like to add a menu to the Magento navigation menu.
I accomplished this by adding the following code to app/etc/config.xml :
<adminhtml> <menu> <example translate="title" module="adminhtml"> <title>Inventory</title> <sort_order>110</sort_order> <children> <set_time> <title>Set It!</title> <action>helloworld/index/goodbye</action> </set_time> </children> </example> </menu>
The problem is that I cannot include this menu in the resolution-> role resources, so I cannot assign this to a specific user.
How to include this menu in permission resources -> roles?
Thanks and more energy!
source share