我在我的自定义模块中覆盖了 CartController。但我有通知问题,这是我的代码:
<?php
use PrestaShop\PrestaShop\Adapter\Presenter\Cart\CartPresenter;
class CartController extends CartControllerCore
{
public $php_self = 'cart';
public function init()
{
parent::init();
$this->qty = abs(Tools::getValue('qty', 1));
var_dump(1);
if ($this->qty >= 2) {
#How can i show notification?
}
}
}
如果我说问题,我的意思是,当 $this->qty >= 2 时,我如何显示例如 js 消息或模式对话框?