1

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

配置文件

<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->adminhtml->default->default->layout->buttonhide.xml

<adminhtml_sales_order_view>
    <reference name="content">
        <remove name="sales_order_edit"/>
    </reference>
</adminhtml_sales_order_view>
4

1 回答 1

1

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

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

你应该没事。

于 2013-08-27T15:33:45.420 回答