Prestashop可以访问自定义模块中的购物车变量

时间:2015-04-18 03:07:37

标签: php prestashop prestashop-1.6

在prestashop中,我想在我的付款模块中获取确切的付款明细步骤数据。所以我只是从order-payment.tpl复制代码并在我的付款执行smarty文件中使用它。它显示了几个错误。所以我只需检查代码并从购物车中获取这些值,并将其从我的支付控制器分配给smarty模板。一切正常,但我仍然得到一个名为

的错误
Undefined index: gift_products .

当我检查Cart.php中的代码时,我得到了这样的

$gift_products = array();
$gift_product = $product;
$gift_product['cart_quantity'] = 1;
$gift_product['price'] = 0;
$gift_product['price_wt'] = 0;
$gift_product['total_wt'] = 0;
$gift_product['total'] = 0;
$gift_product['gift'] = true;
$gift_products[] = $gift_product;

I tried to assign the value of gift_products to the smarty like this

public function initContent()
{
    parent::initContent();

    $cart = $this->context->cart;
    $this->context->smarty->assign(array(
        'gift_products' => $cart->gift_products,
    ));

    $this->setTemplate('payment_execution.tpl');
}

但它根本不起作用。有人能告诉我如何在我的模块中使用变量/数组的购物车吗?任何帮助和建议都会非常明显。感谢。

1 个答案:

答案 0 :(得分:-2)

使用

$summary = $this->context->cart->getSummaryDetails();
$gift_products = $summary['gift_products'];