Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
order_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
37  function Order_Management(&$pm)
38  {
39  $this->Asset_Management($pm);
40 
41  $this->vars = Array(
42  'transaction_id' => Array(
43  'added' => '0.1',
44  'type' => 'text',
45  'default' => '',
46  'description' => 'The ID of the payment transaction returned by the Payment Gateway',
47  'is_admin' => FALSE,
48  ),
49  'billing_name' => Array(
50  'added' => '0.1',
51  'type' => 'text',
52  'default' => '',
53  'description' => 'The billing name returned by the Payment Gateway',
54  'is_admin' => FALSE,
55  ),
56  'billing_addr' => Array(
57  'added' => '0.1',
58  'type' => 'text',
59  'default' => '',
60  'description' => 'The billing address returned by the Payment Gateway',
61  'is_admin' => FALSE,
62  ),
63  'delivery_name' => Array(
64  'added' => '0.1',
65  'type' => 'text',
66  'default' => '',
67  'description' => 'The delivery name returned by the Payment Gateway',
68  'is_admin' => FALSE,
69  ),
70  'delivery_addr' => Array(
71  'added' => '0.1',
72  'type' => 'text',
73  'default' => '',
74  'description' => 'The delivery address returned by the Payment Gateway',
75  'is_admin' => FALSE,
76  ),
77  );
78 
79  }//end Order_Management()
80 
81 
82 }//end class
83 
84 ?>