n98/n98_layouthelper

此包已被 废弃 且不再维护。未建议替代包。

在布局操作中调用的有用方法,允许通过local.xml进行更多定制,而不接触原始布局文件。

安装: 207

依赖者: 0

建议者: 0

安全: 0

星星: 33

关注者: 19

分支: 9

开放问题: 3

类型:magento-module

1.0.0 2019-06-14 03:59 UTC

This package is auto-updated.

Last update: 2020-08-21 10:50:34 UTC


README

在布局操作中调用的有用方法,允许通过local.xml进行更多定制,而不接触原始布局文件。

  • 从local.xml布局更新中移除链接

而不接触原始布局文件。

  • 在现有元素前后添加CSS/JS

示例:在开始处添加CSS文件

<reference name="head">
    <action method="addCss">
        <stylesheet>css/footer.css</stylesheet>
        <params></params>
        <ref>*</ref>
        <before>1</before>
    </action>
</reference>

示例:从客户菜单中删除一个链接

<customer_account>
    <reference name="customer_account_navigation">
        <action method="removeLink"><name>OAuth Customer Tokens</name></action>
        <action method="removeLink"><name>billing_agreements</name></action>
        <action method="removeLink"><name>recurring_profiles</name></action>
    </reference>
</customer_account>