VbzCart/docs/pieces/cart: Difference between revisions

From Woozle Writes Code
< VbzCart‎ | docs‎ | pieces
Jump to navigation Jump to search
imported>Woozle
m (Woozle moved page VbzCart/cart to VbzCart/pieces/cart without leaving a redirect: reorganizing)
imported>Woozle
m (→‎data tables: link updates)
Line 11: Line 11:
* [[VbzCart/code/files/ckout.php]] -- handles checkout process / pages
* [[VbzCart/code/files/ckout.php]] -- handles checkout process / pages
==data tables==
==data tables==
* {{l/same|tables/shop_cart}}
* {{vbzcart|table|shop_cart}}
** {{l/same|tables/shop_cart_data}}: contact information for payment and shipping
** {{vbzcart|table|shop_cart_data}}: contact information for payment and shipping
** {{l/same|tables/shop_cart_event}}: cart-specific event log
** {{vbzcart|table|shop_cart_event}}: cart-specific event log
** {{l/same|tables/shop_cart_line}}: cart contents
** {{vbzcart|table|shop_cart_line}}: cart contents

Revision as of 19:02, 25 January 2015

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