Magento 2:我的自定义插件在管理面板中返回404页面

时间:2016-02-16 18:11:18

标签: magento2

我正在尝试在Magento 2.0.2中制作我的第一个插件。 但magento管理面板显示我404页面。 我已经阅读了一些教程,但它没有帮助。

应用程序/代码/ MyCustom / ProductsGroups的/ etc / module.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Products_Groups" setup_version="1.0.0">
    </module>
</config>

应用程序/代码/ MyCustom / ProductsGroups的/ etc / adminhtml / menu.xml文件

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
    <menu>
        <add id="Products_Groups::groups" title="Products groups" module="Products_Groups" parent="Magento_Catalog::inventory" action="groups/list/" resource="Products_Groups::groups"/>
    </menu>
</config>

应用程序/代码/ MyCustom / ProductsGroups的/ etc / adminhtml / routes.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
    <router id="admin">
        <route id="groups" frontName="groups">
            <module name="Products_Groups"/>
        </route>
    </router>
</config>

应用程序/代码/ MyCustom / ProductsGroups /控制器/ Adminhtml /列表/ index.php的

<?php

namespace Axiom\Groups\Controller\Adminhtml\Groups;

class Index extends \Magento\Backend\App\Action
{
    public function execute()
    {
        die ("test test test");
    }
}

有人可以帮助我吗?

0 个答案:

没有答案