我的英语不太好
我开发了一个支付模块,其中有一个名为validation.php的控制器
此 validation.php 验证付款并且它有两种状态
第一个如果付款是valide,则必须查看 ok-ok-ok-ok
如果付款无效则第二个必须查看不 - 不 - 否
在网页中,必须查看此
ok-ok-ok-ok
或
no-no-no-no
这个字符串必须在页面中查看,就像没有html标签的简单回声一样
我使用了变量 content_only =>是的但它在页面源中查看了一些我不需要的标签。
我希望我的问题得到明确解释
答案 0 :(得分:0)
试试这个
// Check that this payment option is still available in case the customer changed his address just before the end of the checkout process
$res = 'NO NO';
foreach (Module::getPaymentModules() as $module)
if ($module['name'] == 'moduleName')
{
$res = 'ok ok';
break;
}
答案 1 :(得分:0)
如果您只需显示页眉,页脚和中间列并忽略左右列,则可以在initContent函数中使用控制器中的以下代码
$this->display_column_left = true;
$this->display_column_right = true;
它会隐藏左右列。如果您需要隐藏所有内容,请使用
$this->content_only = true
但是仍然记得一些基本的html将至少显示html的开始和结束标签以及一些标头基本的html标签。
谢谢