Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
paypal_business_account_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  'name' => Array(
44  'added' => '0.1',
45  'type' => 'text',
46  'default' => '',
47  'is_admin' => FALSE,
48  'is_contextable'=> TRUE,
49  ),
50  'account_type' => Array(
51  'added' => '0.1',
52  'type' => 'selection',
53  'default' => 'sandbox',
54  'parameters' => Array(
55  'multiple' => FALSE,
56  'allow_empty' => FALSE,
57  'options' => Array(
58  'live' => 'Live',
59  'sandbox' => 'Sandbox',
60  ),
61  ),
62  ),
63  'account_id' => Array(
64  'added' => '0.1',
65  'type' => 'text',
66  'default' => '',
67  ),
68  'public_cert_path' => Array(
69  'added' => '0.1',
70  'type' => 'text',
71  'default' => '',
72  ),
73  'public_cert_id' => Array(
74  'added' => '0.1',
75  'type' => 'text',
76  'default' => '',
77  ),
78  'private_key_path' => Array(
79  'added' => '0.1',
80  'type' => 'text',
81  'default' => '',
82  ),
83  'paypal_cert_path' => Array(
84  'added' => '0.1',
85  'type' => 'text',
86  'default' => '',
87  ),
88  'error_email' => Array(
89  'added' => '0.1',
90  'type' => 'email',
91  'default' => '',
92  'is_admin' => 0,
93  ),
94  'send_email_on_error' => Array(
95  'added' => '0.1',
96  'type' => 'boolean',
97  'default' => TRUE,
98  'parameters' => Array(
99  'allow_empty' => FALSE,
100  ),
101  ),
102  );
103 
104  }//end constructor
105 
106 
107 }//end class
108 ?>