Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
db_connector_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
19 
31 {
32 
33 
38  function Db_Connector_Management(&$pm)
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'dsn' => Array(
44  'added' => '0.1',
45  'type' => 'text',
46  'default' => '',
47  ),
48  'name' => Array(
49  'added' => '0.1',
50  'type' => 'text',
51  'default' => '',
52  'is_admin' => FALSE,
53  'is_contextable'=> TRUE,
54  ),
55  'database' => Array(
56  'added' => '0.1',
57  'type' => 'text',
58  'default' => '',
59  ),
60  'host' => Array(
61  'added' => '0.1',
62  'type' => 'text',
63  'default' => '',
64  ),
65  'user' => Array(
66  'added' => '0.1',
67  'type' => 'text',
68  'default' => '',
69  ),
70  'password' => Array(
71  'added' => '0.1',
72  'type' => 'password',
73  'default' => '',
74  ),
75  'db_type' => Array(
76  'added' => '0.1',
77  'type' => 'text',
78  'default' => 'postgres',
79  ),
80  );
81 
82  }//end constructor
83 
84 
85 }//end class
86 
87 ?>