Magento自定义模块管理员权限

时间:2010-07-07 16:14:50

标签: magento

我为Magento创建了一些自定义模块,当我尝试为模块分配权限时(选中复选框),当我点击保存时,取消选中该框。

有人有什么想法吗?听起来有点像我的config.xml文件中的内容,所以我会在这里发布以防万一:

<config>
<modules>
    <Wpe_Vendorlist>
        <version>0.1.0</version>
    </Wpe_Vendorlist>
</modules>
<admin>
    <routers>
        <vendorlist>
            <use>admin</use>
            <args>
                <module>Wpe_Vendorlist</module>
                <frontName>vendorlist</frontName>
            </args>
        </vendorlist>
    </routers>
</admin>
<adminhtml>
    <menu>
        <customer>
            <children>
                <items module="vendorlist">
                    <title>SO Vendor List</title>
                    <sort_order>999</sort_order>
                    <action>vendorlist/adminhtml_vendorlist</action>
                </items>
            </children>
        </customer>
    </menu>
    <acl>
        <resources>
            <all>
                <title>Allow Everything</title>
            </all>
            <admin>
                <children>
                    <Wpe_Vendorlist>
                        <title>Vendorlist Module</title>
                        <sort_order>10</sort_order>
                    </Wpe_Vendorlist>
                </children>
            </admin>
        </resources>
    </acl>
    <layout>
        <updates>
            <vendorlist>
                <file>vendorlist.xml</file>
            </vendorlist>
        </updates>
    </layout>
</adminhtml>
<global>
    <models>
        <vendorlist>
            <class>Wpe_Vendorlist_Model</class>
            <resourceModel>vendorlist_mysql4</resourceModel>
        </vendorlist>
        <vendorlist_mysql4>
            <class>Wpe_Vendorlist_Model_Mysql4</class>
            <entities>
                <vendorlist>
                    <table>vendorlist</table>
                </vendorlist>
            </entities>
        </vendorlist_mysql4>
    </models>
    <resources>
        <vendorlist_setup>
            <setup>
                <module>Wpe_Vendorlist</module>
            </setup>
            <connection>
                <use>core_setup</use>
            </connection>
        </vendorlist_setup>
        <vendorlist_write>
            <connection>
                <use>core_write</use>
            </connection>
        </vendorlist_write>
        <vendorlist_read>
            <connection>
                <use>core_read</use>
            </connection>
        </vendorlist_read>
    </resources>
    <blocks>
        <vendorlist>
            <class>Wpe_Vendorlist_Block</class>
        </vendorlist>
    </blocks>
    <helpers>
        <vendorlist>
            <class>Wpe_Vendorlist_Helper</class>
        </vendorlist>
    </helpers>
</global>
</config>

5 个答案:

答案 0 :(得分:5)

我强烈建议您查看有关系统配置的Alan Storm's article以及其他系列,这是我发现的关于magento编程的最佳信息。

对于这个特殊问题,我在模块中使用您的模块名称

完成了这个操作
<acl><!-- permits -->
    <resources>
        <admin>
            <children>
                <customer translate="title" module="vendorlist"><!-- this tag matches the menu tag, and the same for his children -->
                    <title>what will appears in the checkboxes tree when you create a role</title>
                    <children>
                        <firstchild>
                            <title>what will appears in the checkboxes tree when you create a role</title>
                        </firstchild>
                    </children>
                </customer>
            </children>
        </admin>
    </resources>
</acl>

您不需要:

                <children>
                    <firstchild>
                        <title>what will appears in the checkboxes tree when you create a role</title>
                    </firstchild>
                </children>

因为您的模块中没有孩子,所以我只是把它作为一个例子 我希望这有帮助

答案 1 :(得分:2)

请更改您的config.xml并替换

<acl>
    <resources>
        <all>
            <title>Allow Everything</title>
        </all>
        <admin>
            <children>
                <Wpe_Vendorlist>
                    <title>Vendorlist Module</title>
                    <sort_order>10</sort_order>
                </Wpe_Vendorlist>
            </children>
        </admin>
    </resources>
</acl>

<acl>
    <resources>
        <all>
            <title>Allow Everything</title>
        </all>
        <admin>
            <children>
                <vendorlist>
                    <title>Vendorlist Module</title>
                    <sort_order>10</sort_order>
                </vendorlist>
            </children>
        </admin>
    </resources>
</acl>

只需要在子标记后更改vendorlist而不是Wpe_Vendorlist。这个改变在我的自定义模块中对我有用,希望也可以帮助别人。

答案 2 :(得分:1)

您应该在资源和菜单项名称中仅使用小写字符。请参阅 app / code / core / Mage / Adminhtml / Block / Permissions / Tab / Rolesedit.php

上的构造函数
public function __construct()
{
    ...

    foreach ($rules_set->getItems() as $item) {
        $itemResourceId = $item->getResource_id();
        if (array_key_exists(strtolower($itemResourceId), $resources) && $item->getPermission() == 'allow') {
            $resources[$itemResourceId]['checked'] = true;
            array_push($selrids, $itemResourceId);
        }
    }

    ....

我还建议你考虑将acl和菜单信息移到adminhtml.xml而不是在config.xml上。

另一个问题是你应该在菜单和acl树中具有完全相同的结构,因此你的acl反映了菜单结构,magento知道在给角色许可时要启用什么。 Ivan Chepurnyi有一篇很好的文章关于这个here

因此,在更改之后,您最终会在 adminhtml.xml 上找到类似的内容:

<adminhtml>
    <menu>
        <customer>
            <children>
                <wpe_vendorlist module="vendorlist">
                    <title>SO Vendor List</title>
                    <sort_order>999</sort_order>
                    <action>vendorlist/adminhtml_vendorlist</action>
                </wpe_vendorlist>
            </children>
        </customer>
    </menu>
    <acl>
        <resources>
            <all>
                <title>Allow Everything</title>
            </all>
            <admin>
                <children>
                    <customer>
                        <children>
                            <wpe_vendorlist>
                                <title>Vendorlist Module</title>
                                <sort_order>10</sort_order>
                            </wpe_vendorlist>
                        </children>
                    </customer>
                </children>
            </admin>
        </resources>
    </acl>
</adminhtml>

答案 3 :(得分:0)

我从magento论坛找到了一些东西。转到以下链接: http://www.magentocommerce.com/boards/viewthread/78673/

但仍无法从新创建的角色为这些自定义模块设置权限。 这些自定义模块未显示在新创建的角色用户的主菜单中。

答案 4 :(得分:0)

更改acl标记模块中的语法后,

显示在自定义模块权限