starting with Magento Backend

前端 未结 1 1201
傲寒
傲寒 2021-01-24 10:08

Since a couple of days I´m looking at the behaviour of the Magento backend. To comprehend I made a new grid to see a table of the bbdd. After finishing this grid I can see that

相关标签:
1条回答
  • 2021-01-24 10:26

    I think you have your routers in reverse.

    <admin>
        <routers>
            <adminhtml>
                <args>
                    <modules>
                        <sintax before="Mage_Adminhtml">Wpr_Giftproducts_Adminhtml</sintax>
                    </modules>
                </args>
            </adminhtml>
        </routers>
    </admin>
    

    This way the Giftproducts controller is part of the adminhtml router, whereas the old way was reassigning admin controllers to giftrouter.

    0 讨论(0)
提交回复
热议问题