Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
paypal_order_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function __construct(&$pm)
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'txn_id' => Array(
44  'added' => '0.1',
45  'type' => 'text',
46  'default' => '',
47  ),
48  'payment_status' => Array(
49  'added' => '0.1',
50  'type' => 'text',
51  'default' => '',
52  ),
53  'incomplete_reason' => Array(
54  'added' => '0.1',
55  'type' => 'text',
56  'default' => '',
57  ),
58  'total_amount' => Array(
59  'added' => '0.1',
60  'type' => 'float',
61  'default' => 0,
62  ),
63  'currency' => Array(
64  'added' => '0.1',
65  'type' => 'text',
66  'default' => '',
67  ),
68  'products' => Array(
69  'added' => '0.1',
70  'type' => 'serialise',
71  'default' => Array(),
72  ),
73  'custom_info' => Array(
74  'added' => '0.1',
75  'type' => 'text',
76  'default' => '',
77  ),
78  );
79 
80  }//end constructor
81 
82 
83 }//end class
84 ?>