我正在尝试编辑从此处生成的报告,example.com/index.php/admin/sales_order/index/
. 我需要在右侧的下拉列表中添加一个新报告。
我通过 url 将此页面跟踪到它的控制器并转储了该类。
app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php indexAction()
并得到了这个类Ext4mage_Html2pdf_Sales_OrderController
,所以我知道它被模块覆盖了。在这种情况下,Ext4mage Html2pdf 模块。
该控制器仅使用以下方法覆盖 pdf 方法,
require_once BP.'/app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php';
class Ext4mage_Html2pdf_Sales_OrderController extends Mage_Adminhtml_Sales_OrderController{
//etc }
所以我在本地创建了我的新模块,希望在社区中覆盖它。
app/code/local/Daves/OrderModule/controllers/Sales/OrderController.php
并放在下面。
require_once 'Mage'.DS.'Adminhtml'.DS.'controllers'.DS.'Sales'.DS.'OrderController.php';
require_once BP.'/app/code/community/Ext4mage/Html2pdf/controllers/Sales/OrderController.php';
class Daves_OrderModule_Sales_OrderController extends Ext4mage_Html2pdf_Sales_OrderController{
public function indexAction(){
die();
return parent::indexAction();
}
}
我预期的功能是在管理员中重新加载销售/订单页面时,我会得到一个空白页面,而我没有。这意味着我的控制器没有被加载。
我的 IDE 显示类正在扩展,并且将 adie()
放入indexAction()
Ext4mage_Html2pdf 控制器中的方法按预期工作。由于某种原因,它只是错过了我的控制器。
尝试使用直接在浏览器中点击控制器example.com/admin/daves_ordermodule/sales_order/index
也会引发 404。
我应该尝试覆盖块吗?
我没有<rewrite>
在我的配置中创建任何时髦的更新句柄,主要是因为我不确定我是否需要它们,或者它们会去哪里。我知道 Magento 从 Zend 那里获得了对 xml 的可怕使用,我将在此处粘贴我的配置。
app/etc/modules/Daves_OrderModule.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Daves_OrderModule>
<active>true</active>
<codePool>local</codePool>
<depends> <!-- same as in the /app/etc/Mage_All.xml -->
<Mage_Reports/>
<Mage_Adminhtml/>
<Ext4mage_Html2pdf/>
</depends>
</Daves_OrderModule>
</modules>
</config>
app/code/local/Daves/OrderModule/etc/config.xml
0.1
<global>
<blocks>
<daves_ordermodule> <!-- this is the class group and must be lowercase-->
<class>Daves_OrderModule_Block</class> <!-- this is how you access it -->
</daves_ordermodule>
</blocks>
<helpers>
<daves_ordermodule>
<class>Daves_OrderModule_Helper</class> <!-- Mage::helper('squaresphere_module/<helper>'); -->
</daves_ordermodule>
</helpers>
<models>
<daves_ordermodule>
<class>Daves_OrderModule_Model</class> <!-- Mage::getModel('squaresphere_module/<model>'); -->
</daves_ordermodule>
</models>
</global>
<!-- How to get to the module from the browser -->
<admin>
<routers>
<daves_ordermodule> <!-- My unique class group -->
<use>admin</use> <!-- which router class? -->
<args>
<module>Daves_OrderModule</module> <!-- assumes /controllers -->
<frontName>daves_ordermodule</frontName> <!-- what is on the url -->
</args>
</daves_ordermodule>
</routers>
</admin>
</config>
app/code/community/Ext4mage/Html2pdf/etc/config.xml
具体节点
<admin>
<routers>
<html2pdf>
<use>admin</use>
<args>
<module>Ext4mage_Html2pdf</module>
<frontName>html2pdf</frontName>
</args>
</html2pdf>
<emailattachments>
<args>
<modules>
<Ext4mage_Html2pdf before="Fooman_EmailAttachments">Ext4mage_Html2pdf</Ext4mage_Html2pdf>
</modules>
</args>
</emailattachments>
<adminhtml>
<args>
<modules>
<Ext4mage_Html2pdf before="Mage_Adminhtml">Ext4mage_Html2pdf</Ext4mage_Html2pdf>
</modules>
</args>
</adminhtml>
</routers>
</admin>