VbzCart/docs/pieces/cart: Difference between revisions

From Woozle Writes Code
< VbzCart‎ | docs‎ | pieces
Jump to navigation Jump to search
imported>Woozle
(ckout.php)
imported>Woozle
(shop.php is relevant to the cart)
Line 3: Line 3:
Cart functionality is defined in:
Cart functionality is defined in:
==PHP files==
==PHP files==
* [[VbzCart/code/files/shop.php]] -- shopping support
* [[VbzCart/code/files/cart.php]] -- basic business logic
* [[VbzCart/code/files/cart.php]] -- basic business logic
** [[VbzCart/code/files/cart-data.php]] -- non-item data stored in cart
** [[VbzCart/code/files/cart-data.php]] -- non-item data stored in cart

Revision as of 02:14, 23 February 2013

A cart is a temporary holder for a collection of items to be ordered plus any order-fulfillment data (contact/shipping info, payment). The contents of a cart may be used to create a new order, or may be abandoned. They cannot currently be added to an existing order, although this might be useful functionality.

Cart functionality is defined in:

PHP files

data tables