Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
ipb_user_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
29 {
30 
31 
36  function Ipb_User_Management(&$pm)
37  {
38  $this->Asset_Management($pm);
39 
40  $this->vars = Array(
41  'name' => Array(
42  'added' => '0.1',
43  'type' => 'text',
44  'default' => '',
45  ),
46  'mgroup' => Array(
47  'added' => '0.1',
48  'type' => 'text',
49  'default' => '',
50  ),
51  'email' => Array(
52  'added' => '0.1',
53  'type' => 'email',
54  'default' => '',
55  ),
56  'title' => Array(
57  'added' => '0.1',
58  'type' => 'text',
59  'default' => '',
60  ),
61  'member_login_key' => Array(
62  'added' => '0.1',
63  'type' => 'text',
64  'default' => '',
65  ),
66  'date_of_birth' => Array(
67  'added' => '0.1',
68  'type' => 'text',
69  'default' => '',
70  ),
71  'photo_type' => Array(
72  'added' => '0.1',
73  'type' => 'text',
74  'default' => '',
75  ),
76  'photo_location' => Array(
77  'added' => '0.1',
78  'type' => 'text',
79  'default' => '',
80  ),
81  'aim_name' => Array(
82  'added' => '0.1',
83  'type' => 'text',
84  'default' => '',
85  ),
86  'icq_number' => Array(
87  'added' => '0.1',
88  'type' => 'text',
89  'default' => '',
90  ),
91  'website' => Array(
92  'added' => '0.1',
93  'type' => 'text',
94  'default' => '',
95  ),
96  'yahoo' => Array(
97  'added' => '0.1',
98  'type' => 'text',
99  'default' => '',
100  ),
101  'interests' => Array(
102  'added' => '0.1',
103  'type' => 'text',
104  'default' => '',
105  ),
106  'msnname' => Array(
107  'added' => '0.1',
108  'type' => 'text',
109  'default' => '',
110  ),
111  'vdirs' => Array(
112  'added' => '0.1',
113  'type' => 'text',
114  'default' => '',
115  ),
116  'location' => Array(
117  'added' => '0.1',
118  'type' => 'text',
119  'default' => '',
120  ),
121  'signature' => Array(
122  'added' => '0.1',
123  'type' => 'text',
124  'default' => '',
125  ),
126  'avatar_location' => Array(
127  'added' => '0.1',
128  'type' => 'text',
129  'default' => '',
130  ),
131  'avatar_size' => Array(
132  'added' => '0.1',
133  'type' => 'text',
134  'default' => '',
135  ),
136  'avatar_type' => Array(
137  'added' => '0.1',
138  'type' => 'text',
139  'default' => '',
140  ),
141  );
142 
143  }//end constructor
144 
145 
146 }//end class
147 
148 ?>