Exemple #1
0
 public function confirmAction()
 {
     $products = $this->_cart->getAllProducts();
     $totalPrice = $this->_cart->getTotalPrice();
     $shipping = $this->_cart->getShipping();
     $this->assign("products", $products[TCVM_Product_Imple::TYPE_COURSES]);
     $this->assign("totalPrice", $totalPrice);
     $this->assign("shipping", $shipping);
 }