示例#1
0
 public function doPushAction()
 {
     $productId = $this->_getParam("product_id");
     $productType = $this->_getParam("product_type");
     $this->_cart->push($productType, $productId);
     $this->redirect("view");
 }
示例#2
0
 private function _renderCartInfo()
 {
     $cartInfo = $this->_cart->getCartInfo();
     $this->assign("cartInfo", $cartInfo);
 }