gpt4 book ai didi

php - 布局 xml 中的 Magento 条件 block

转载 作者:行者123 更新时间:2023-12-02 16:00:57 25 4
gpt4 key购买 nike

如果isset get param x that x.phtml else y.phtml,这是不可能的还是在布局xml文件写入条件下?我看到在 Action Controller 中解决了这个问题。但我覆盖了其他模块中的操作。而且我认为 xml 更好。

实际上,我有一张注册表单可以从已完成的模块中加入程序。我想覆盖此操作并显示 2 种形式中的 1 种。根据获取param值中的内容。

最佳答案

有一种方法可以用几乎纯的 xml 来做到这一点:

背景:
您可以从 xml 调用函数,这将返回值而不是静态值。

因此,在您的情况下,您可以对 xml 执行类似的操作来归档所需的行为:

    <reference name="your-block-name">
<action method="setTemplate">
<template helper="your_module/getTemplate">
<param>a_default_template_if_wanted</param>
</template>
</action>
</reference>

并且在您模块的Data.php帮助器中,函数getTemplate可能如下所示:

public function getTemplate($defaultTemplate){
//check for your get params

if(Mage::app()->getRequest()->getParam('x')){
return 'x.phtml';
}
return $defaultTemplate;
}

关于php - 布局 xml 中的 Magento 条件 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18571169/

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