Magento布局更新未加载

时间:2013-08-27 15:07:53

标签: magento magento-layout-xml

我正在尝试进行布局更改,当后端中的页面加载时我可以隐藏几个按钮,但我似乎无法使我的布局更新触发器。以下是我目前的代码。现在我不关心块本身的功能,只关心我的布局加载。

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>

1 个答案:

答案 0 :(得分:1)

将button.xml文件的内容包装在

<?xml version="1.0"?><layout>...</layout>

你应该没事。