gpt4 book ai didi

Magento - 是否可以为 ifconfig 指定多个值?

转载 作者:行者123 更新时间:2023-12-01 11:40:59 27 4
gpt4 key购买 nike

我想在布局 xml 中为 ifconfig 指定多个值。

<action method="setTemplate" ifconfig="mymodule/general/is_enabled">
<template>mymodule/test.phtml</template>
</action>

是否可以为一个 Action 添加以下两个条件?

ifconfig="mymodule/general/is_enabled"
ifconfig="mymodule/frontend/can_show"

欢迎提出任何建议。

最佳答案

您可以在操作参数中使用辅助方法。像这样

<action method="setTemplate">
<template helper="mymodule/myhelper/canShowIf"/>
</action>

将使用调用的结果调用 setTemplate

Mage::helper('mymodule/myhelper')->canShowIf();

以及模块默认帮助器中的以下内容:

public function canShowIf()
{
if($displayOnly = Mage::getStoreConfig('mymodule/general/is_enabled') == true)

// Do Something

}else if($displayOnly = Mage::getStoreConfig('mymodule/frontend/can_show') == true) {

// Do Something Else

}
return $displayOnly;
}

canShowIf 中实现您的自定义逻辑。

关于Magento - 是否可以为 ifconfig 指定多个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20882046/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com