Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
paypal_configuration_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  'encryption_lib_path' => Array(
51  'added' => '0.1',
52  'type' => 'text',
53  'default' => '/usr/bin/PPCrypto.php',
54  'description' => 'The path to the Paypal Encryption Library file',
55  ),
56  'custom_param_secret_str' => Array(
57  'added' => '0.1',
58  'type' => 'text',
59  'default' => '8f93f16844b964a162ab436ddb82c273',
60  'description' => 'The secret string that is used to calculate the checksum of custom variable so that no malicious users can modify it',
61  ),
62  );
63 
64  }//end constructor
65 
66 
67 }//end class
68 ?>