Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
order_line_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
37  function Order_Line_Management(&$pm)
38  {
39  $this->Asset_Management($pm);
40 
41  $this->vars = Array(
42  'product_assetid' => Array(
43  'added' => '0.0.1',
44  'type' => 'assetid', 'default' => '',
45  'description' => 'The assetid of the product being ordered',
46  'update_fn' => '',
47  ),
48 
49  'quantity' => Array(
50  'added' => '0.0.1',
51  'type' => 'int', 'default' => 1,
52  'description' => 'The quantity being ordered',
53  'update_fn' => '',
54  ),
55 
56  'price' => Array(
57  'added' => '0.0.1',
58  'type' => 'float', 'default' => 0.0,
59  'description' => 'The price of the product being ordered',
60  'update_fn' => '',
61  ),
62  );
63 
64  }//end Order_Line_Management()
65 
66 
67 }//end class
68 
69 ?>