Magento Admin Menu Acl - magento

The code add a new menu in backend. But i have a permission denied problem on the new page. I add the controller and helper.
My adminhtml.xml
<config>
<menu>
<mycustomtab module="colorswitch" translate="title">
<title>My Custom Tab</title>
<sort_order>100</sort_order>
<children>
<index module="colorswitch" translate="title">
<title>Index Action</title>
<sort_order>1</sort_order>
<action>adminhtml/colorswitch</action>
</index>
<list module="colorswitch" translate="title">
<title>List Action</title>
<sort_order>2</sort_order>
<action>adminhtml/custom/list</action>
</list>
</children>
</mycustomtab>
</menu>
<acl>
<resources>
<admin>
<children>
<custom translate="title" module="colorswitch">
<title>My Controller</title>
<sort_order>-100</sort_order>
<children>
<index translate="title">
<title>Index Action</title>
<sort_order>1</sort_order>
</index>
<list translate="title">
<title>List Action</title>
<sort_order>2</sort_order>
</list>
</children>
</custom>
</children>
</admin>
</resources>
</acl>
I havent no idea, where is the problem.

In menu you hve used node
<config>
<menu>
<mycustomtab module="colorswitch" translate="title">
and below
<acl>
<resources>
<admin>
<children>
<**custom** translate="title" module="colorswitch">
Change this custom node to mycustomtab

Your code :
<acl>
<resources>
<admin>
<children>
<custom translate="title" module="colorswitch">
<title>My Controller</title>
<sort_order>-100</sort_order>
<children>
<index translate="title">
<title>Index Action</title>
<sort_order>1</sort_order>
</index>
<list translate="title">
<title>List Action</title>
<sort_order>2</sort_order>
</list>
</children>
</custom>
</children>
</admin>
</resources>
</acl>
Should Be :
<acl>
<resources>
<admin>
<children>
<mycustomtab translate="title" module="colorswitch">
<title>My Controller</title>
<sort_order>-100</sort_order>
<children>
<index translate="title">
<title>Index Action</title>
<sort_order>1</sort_order>
</index>
<list translate="title">
<title>List Action</title>
<sort_order>2</sort_order>
</list>
</children>
</mycustomtab>
</children>
</admin>
</resources>
</acl>

Related

create a submenu under Customers Menu in magento

I know how to create a sub-menu under catalog main navigation menu in config.xml which is:
<menu>
<catalog>
<children>
<testimonials>
<title>Manage Testimonials</title>
<sort_order>1</sort_order>
<action>adminhtml/adminhtml_testimonials</action>
</testimonials>
</children>
</catalog>
</menu>
but how do I create a sub-menu under Customers Menu? I tried:
<menu>
<customers>
<children>
<testimonials>
<title>Manage Testimonials</title>
<sort_order>1</sort_order>
<action>adminhtml/adminhtml_testimonials</action>
</testimonials>
</children>
</customers>
</menu>
but it doesn't work. Any suggestion would be appreciated.
Assuming that this is not a permission issue and you have clear cache and re-login.
In config.xml
<?xml version="1.0"?>
<config>
....
<adminhtml> <---
<menu>
<customer>
<children>
<testimonials>
<title>Manage Testimonials</title>
<sort_order>0</sort_order>
<action>adminhtml/adminhtml_testimonials</action>
</testimonials>
</children>
</customer>
</menu>
</adminhtml> <---
....
or
In adminhtml.xml
<?xml version="1.0"?>
<config>
...
<menu>
<customer>
<children>
<testimonials>
<title>Manage Testimonials</title>
<sort_order>0</sort_order>
<action>adminhtml/adminhtml_testimonials</action>
</testimonials>
</children>
</customer>
</menu>
...

Magento - Can't Save Role Resource for Custom Module

I’ve created a custom module and my config.xml is as follows…
<?xml version="1.0"?>
<config>
<admin>
<routers>
<blacklist>
<use>admin</use>
<args>
<module>Leon_Blacklist</module>
<frontName>blacklist</frontName>
</args>
</blacklist>
</routers>
</admin>
<adminhtml>
<menu>
<blacklist translate="title" module="blacklist">
<title>Blacklist</title>
<sort_order>71</sort_order>
<children>
<items translate="title" module="blacklist">
<title>Manage Items</title>
<sort_order>0</sort_order>
<action>blacklist/adminhtml_blacklist</action>
</items>
</children>
</blacklist>
</menu>
<acl>
<resources>
<all>
<title>Allow Everything</title>
</all>
<admin>
<children>
<Leon_Blacklist translate="title" module="blacklist">
<title>Blacklist Module</title>
<sort_order>10</sort_order>
<children>
<items translate="title" module="blacklist">
<title>Manage Items</title>
</items>
</children>
</Leon_Blacklist>
</children>
</admin>
</resources>
</acl>
<layout>
<updates>
<blacklist>
<file>blacklist.xml</file>
</blacklist>
</updates>
</layout>
</adminhtml>
<config>
The module works as expected if an admin account is logged in. I can see the module in the admin panel and in the Role Resource Tab (System->Permissions->Roles), but when I tried to check the module and save the user role, it will say that it has been saved. But when I rechecked the user role, it is still unchecked.
And when I tried to login using the account with the said user role, the custom module is hidden. What seems to be the problem? Any kind of help is much appreciated..
Thanks.
Your acl section of config is a little wrong. Tags should be similar to menu section. So in your case it should look like this:
<acl>
<resources>
<admin>
<children>
<blacklist translate="title" module="blacklist">
<title>Blacklist Module</title>
<sort_order>10</sort_order>
<children>
<items translate="title" module="blacklist">
<title>Manage Items</title>
</items>
</children>
</blacklist>
</children>
</admin>
</resources>
</acl>
Here is my acl section of config.xml
<acl>
<resources>
<all>
<title>Allow Everything</title>
</all>
<admin>
<children>
<banner translate="title" module="banner">
<title>Banner Module</title>
<sort_order>10</sort_order>
<children>
<banner translate="title" module="banner">
<title>Manage Banners</title>
</banner>
</children>
</banner>
</children>
</admin>
</resources>
</acl>
Also add the below function in your controller to avoid the "Access denied" message
protected function _isAllowed(){
return true;
}
Code taken from: http://chandreshrana.blogspot.in/2015/06/custom-module-role-not-save-in.html

Magento custom tab and admin controller acl

I have an issue with a custom controllers ACL for the admin backend.
Ive read, re-read, checked....and still cant find my issue. Dammit.
First, the code...the module itself is working...i have blocks, helpers, front end controllers...system->config tab/group data...all working fine. My issue is just relating to admincontroller acl...so ill just add the relevant code for that area for now.
My backend tab is showing, but the urls (admin/mynewmodule/index, admin/mynewmodule/list) go to a 404 page.
config.xml, admin routers:
<admin>
<routers>
<adminhtml>
<args>
<modules>
<mynewmodule before="Mage_Adminhtml">
Mworkz_MyNewModule_Adminhtml
</mynewmodule >
</modules>
</args>
</adminhtml>
</routers>
</admin>
Adminhtml.xml, backend tab, and acl
<?xml version="1.0"?>
<config>
<menu>
<mynewmodule module="mynewmodule " translate="title">
<title>MyNewModule</title>
<sort_order>71</sort_order>
<children>
<items module="mynewmodule " translate="title">
<title>Index Action</title>
<sort_order>1</sort_order>
<action>adminhtml/mynewmodule/</action>
</items>
<list module="mynewmodule " translate="title">
<title>List Action</title>
<sort_order>2</sort_order>
<action>adminhtml/mynewmodule/list/</action>
</list>
</children>
</mynewmodule >
</menu>
<acl>
<resources>
<admin>
<children>
<system>
<children>
<config>
<children>
<mynewmodule translate="title">
<title>MyNewModule</title>
</mynewmodule>
</children>
</config>
</children>
</system>
<mynewmodule translate="title" module="mynewmodule">
<title>MyNewModule</title>
<sort_order>-100</sort_order>
<children>
<items translate="title">
<title>Index Action</title>
<sort_order>1</sort_order>
</items>
<list translate="title">
<title>List Action</title>
<sort_order>2</sort_order>
</list>
</children>
</mynewmodule>
</children>
</admin>
</resources>
</acl>
<layout>
<updates>
<mynewmodule>
<file>mworkz/mynewmodule.xml</file>
</mynewmodule>
</updates>
</layout>
</config>
Admin controller
class Mworkz_MyNewModule_Adminhtml_MyNewModuleController extends Mage_Adminhtml_Controller_action
{
protected function _initAction() {
$this->loadLayout()
->_setActiveMenu('extbuilderpro/items')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Items Manager'), Mage::helper('adminhtml')->__('Item Manager'));
return $this;
}
public function indexAction() {
$this->_initAction()
->renderLayout();
}
public function listAction() {
$this->_initAction()
->renderLayout();
}
}
If you write your own extension, path must be module_name/admin_html/list. Download free magento extension, for example: http://www.magentocommerce.com/magento-connect/news-by-commercelab-3436.html and look at etc/config.xml.
So right code:
<menu>
<modulename module="modulename" translate="title">
<title>Module Name</title>
<sort_order>1</sort_order>
<children>
<add translate="title" module="modulename">
<title>Add New Item</title>
<sort_order>0</sort_order>
<action>modulename/adminhtml_news/new</action>
</add>
<items translate="title" module="modulename">
<title>Items Manager</title>
<sort_order>10</sort_order>
<action>modulename/adminhtml_news/index</action>
</items>
<settings translate="title" module="modulename">
<title>Settings</title>
<sort_order>40</sort_order>
<action>adminhtml/system_config/edit/section/modulename</action>
</settings>
</children>
</clnews>
</menu>

Magento admin menu link not showing up

I have created 2 modules (A and B) in Magento. Each of these modules are managed from the admin section.
I tried creating a menu link under cms(menu) in the admin section for each module by writing the following configuration in modules' config files
Module A>etc>config.xml
<adminhtml>
<menu>
<a module="A">
<title>A</title>
<sort_order>100</sort_order>
<children>
<items module="A">
<title>Manage A</title>
<sort_order>0</sort_order>
<action>a/adminhtml_a</action>
</items>
</children>
</a>
</menu>
<adminhtml>
Module B>etc>config.xml
<adminhtml>
<menu>
<b module="B">
<title>B</title>
<sort_order>100</sort_order>
<children>
<items module="B">
<title>Manage B</title>
<sort_order>1</sort_order>
<action>b/adminhtml_b</action>
</items>
</children>
</b>
</menu>
<adminhtml>
However only the link for Module B shows up under CMS menu. How can I show both links?
the following worked
Module A>etc>config.xml
<menu>
<cms>
<children>
<a module="A">
<title>A</title>
<sort_order>5</sort_order>
<children>
<items module="A">
<title>Manage A</title>
<sort_order>0</sort_order>
<action>A/adminhtml_a</action>
</items>
</children>
</a>
</children>
</cms>
</menu>
Module B>etc>config.xml
<menu>
<cms>
<children>
<b module="B">
<title>B</title>
<sort_order>6</sort_order>
<children>
<items module="B">
<title>Manage B</title>
<sort_order>0</sort_order>
<action>B/adminhtml_b</action>
</items>
</children>
</b>
</children>
</cms>
</menu>

How do I add a submenu to an existing menu in Magento?

My existing code creates a menu that looks like this.
But I want a menu that is a sub-menu of the Catalog menu.
Here is my existing code in adminhtml.xml
<?xml version="1.0" ?>
<config>
<menu>
<mycustom_menu translate="title" module="brands">
<title>My Custom Menu Item</title>
<sort_order>300</sort_order>
<children>
<!-- child items go here -->
<subitem translate="title" module="brands">
<title>Manage Brands</title>
<sort_order>10</sort_order>
<action>adminhtml/mycustom_controller/</action>
</subitem>
</children>
</mycustom_menu>
</menu>
<acl>
<resources>
<admin>
<children>
<mycustom_menu translate="title" module="brands">
<title>My Custom Menu Item</title>
<sort_order>300</sort_order>
<children>
<subitem translate="title" module="brands">
<title>Subitem</title>
<sort_order>10</sort_order>
</subitem>
</children>
</mycustom_menu>
</children>
</admin>
</resources>
</acl>
</config>
Instead of using <mycustom_menu> you need to re-use the nodename that was used in the adminhtml.xml of the catalog module. That name is catalog.
So your XML should look like:
<?xml version="1.0"?>
<config>
<menu>
<catalog>
<children>
<your_subitem>
<title>Subitem 1</title>
<sort_order>10</sort_order>
<action>adminhtml/your_action</action>
</your_subitem>
</children>
</catalog>
</menu>
<acl>
<resources>
<admin>
<children>
<catalog>
<title>Subitem 1</title>
<sort_order>10</sort_order>
</catalog>
</children>
</admin>
</resources>
</acl>
</config>
For example to add submenu in customer tab:
<menu>
<customer>
<children>
<vendor module="yourmodule">
<title>Your Title</title>
<sort_order>0</sort_order>
<action>admin_yourmodule/adminhtml_yourmoduleaction</action>
</vendor>
</children>
</customer>
</menu>

Resources