Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_ecommerce_cart_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'cart' => Array(
44  'added' => '0.1',
45  'type' => 'assetid',
46  'default' => 0,
47  'description' => 'The assetid of the cart that we are connected with',
48  ),
49  'ecom_form' => Array(
50  'added' => '0.1',
51  'type' => 'assetid',
52  'default' => 0,
53  'description' => 'The assetid of the ecommerce checkout page that we are connected with',
54  ),
55  );
56 
57  }//end constructor
58 
59 
60 }//end class
61 ?>