我已经习惯了覆盖 magento 的前端布局文件,所以我认为在管理面板中覆盖 phtml 模板会很容易——但在过去的六个小时里我一无所获。到目前为止,我发现的所有教程都集中在创建控制器上,但我只需要覆盖两个 phtml 文件,因为我只想稍微更改订购项目的显示。
具体来说,我想覆盖 default/template/sales/order/view/items.phtml,通常我会在我自己的模块的设计文件夹中匹配该路径并称之为一天。
我可以通过我的 config.xml 覆盖 Mage/Adminhtml/Sales/Order/View/Items.php 中的块 php 文件:
<config>
...
<global>
...
<blocks>
...
<adminhtml>
<rewrite>
<sales_order_view_items>MyCompany_MyModule_Block_Adminhtml_Sales_Order_View_Items</sales_order_view_items>
</rewrite>
</adminhtml>
</blocks>
...
</global>
...
</config>
如何告诉 Magento 在 design/adminhtml//default/sales/order/view/items.phtml 中使用我的 phtml 文件?
我的 config.xml 中的这些行不应该工作吗?
<config>
...
<adminhtml>
<layout>
<updates>
<my_module>
<file>order_list.xml</file>
</my_module>
</updates>
</layout>
</adminhtml>
...
</config>
非常感谢任何帮助!我真的希望我只是忽略了一些东西......