Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
payment_gateway_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
38  {
39  $this->Asset_Management($pm);
40 
41  $this->vars = Array(
42  'name' => Array(
43  'added' => '0.0.1',
44  'type' => 'text', 'default' => '',
45  'description' => 'The full name of the payment gateway',
46  'update_fn' => '',
47  ),
48 
49  'short_name' => Array(
50  'added' => '0.0.1',
51  'type' => 'text', 'default' => '',
52  'description' => 'The short name of the payment gateway',
53  'update_fn' => '',
54  ),
55  );
56 
57  }//end constructor
58 
59 
60 }//end class
61 
62 ?>