本文整理汇总了PHP中Cart::emptyCart方法的典型用法代码示例。如果您正苦于以下问题:PHP Cart::emptyCart方法的具体用法?PHP Cart::emptyCart怎么用?PHP Cart::emptyCart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cart
的用法示例。
在下文中一共展示了Cart::emptyCart方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: emptyCart
function emptyCart()
{
$this->Cart->emptyCart($this->passedArgs['ct']);
$this->redirect(array('action' => 'view/c:' . $this->c));
}
示例2: submit
public function submit()
{
require_once '../app/models/Purchase.php';
$purchase = new Purchase();
$purchase->assignProperties($_SESSION['checkout']['properties']);
$purchaseId = $purchase->savePreparedStatementToDb('purchase', $purchase->properties);
$products = [];
foreach ($_SESSION['checkout']['cart'] as $key => $value) {
if (is_array($value)) {
array_push($products, ['fkPurchaseProductVersionProductVersion' => $key, 'quantityInPurchase' => $value['cart_quantity'], 'priceAtPurchase' => $value['product_price']]);
}
}
$purchase->addToJoinTable($products, 'purchase_product_version');
require_once '../app/models/Cart.php';
$cart = new Cart($_SESSION['checkout']['properties']['fk_purchase_user']);
$cart->emptyCart();
$view = new View('checkout/submit');
$view->set_title('Order Complete');
$view->pass_data('deliveryDue', $_SESSION['checkout']['properties']['deliveryDue']);
$view->load_page();
unset($_SESSION['checkout']);
}
示例3: testAddProduct
public function testAddProduct()
{
$cart = new Cart(774);
$pRepo = new ProductRepository();
$product1 = $pRepo->getProduct(130);
$product2 = $pRepo->getProduct(133);
$cart->emptyCart();
$this->assertEquals(0, $cart->count(), "Delete didn't work");
$cart->addProduct($product1);
$this->assertEquals(1, $cart->count(), "Adding product 1 failed");
$this->assertEquals($cart->count(), count($cart->getProducts()), "?");
$cart->addProduct($product2, 1405);
$this->assertEquals(2, $cart->count(), "Adding product 2 failed");
//getProducts should ignore its internal cache, so we tell it to.
$this->assertEquals($cart->count(), count($cart->getProducts(NULL, NULL, TRUE)), "?");
}
示例4: emptyCart
public function emptyCart()
{
$oCart = new Cart();
$allIds = $oCart->getAllIds();
$oCart->emptyCart();
}