我正在尝试进行布局更改,当后端中的页面加载时我可以隐藏几个按钮,但我似乎无法使我的布局更新触发器。以下是我目前的代码。现在我不关心块本身的功能,只关心我的布局加载。
config.xml中
<config>
<modules>
<Mysite_Buttonhide>
<version>0.1.0</version>
</Mysite_Buttonhide>
</modules>
<adminhtml>
<layout>
<updates>
<buttonhide>
<file>buttonhide.xml</file>
</buttonhide>
</updates>
</layout>
</adminhtml>
<global>
<blocks>
<Buttonhide>
<class>Mysite_Buttonhide_Block</class>
</Buttonhide>
</blocks>
</global>
</config
buttonhide.xml,位于app-> design-&gt; adminhtml-&gt; default-&gt; default-&gt; layout-&gt; buttonhide.xml
<adminhtml_sales_order_view>
<reference name="content">
<remove name="sales_order_edit"/>
</reference>
</adminhtml_sales_order_view>
答案 0 :(得分:1)
将button.xml文件的内容包装在
中<?xml version="1.0"?><layout>...</layout>
你应该没事。