Magento - 在两个模块中覆盖块模板

时间:2015-03-05 13:50:09

标签: php magento

我有一个模块正在设置订单历史记录块,如下所示:

  <adminhtml_sales_order_view>
    <reference name="order_tab_info">
         <block type="adminhtml/sales_order_view_history" name="order_history" template="sales/order/view/history.phtml"></block>
    </reference>
  </adminhtml_sales_order_view>

但我正在编写一个新模块,我想使用不同的history.phtml文件。在我的模块layout.xml中,我写过:

<adminhtml_sales_order_view>
    <reference name="order_history">
        <action method="setTemplate">
            <template>mymodule/sales/order/view/history.phtml</template>
        </action>
    </reference>
</adminhtml_sales_order_view>

但不幸的是,这对我来说仍然不起作用。请告诉我哪里出错?

我已尝试让我的模块依赖于app / etc / modules中的其他模块,但我也没有修复它。

1 个答案:

答案 0 :(得分:0)

我没有将layout.xml添加到我的config.xml中。