Example #1
1
 public function removeitemAction()
 {
     $cart =& $_SESSION['jCart'];
     if (!is_object($cart)) {
         $cart = new jCart();
     }
     $r = $this->getRequest();
     $cart->del_item($r->getParam('id'));
     $this->_forward("checkout", "store");
 }