Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
user_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function User_Management(&$pm)
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'username' => Array(
44  'added' => '0.1',
45  'type' => 'text',
46  'default' => '',
47  'uniq' => TRUE,
48  'is_admin' => 0,
49  ),
50  'password' => Array(
51  'added' => '0.1',
52  'type' => 'password',
53  'default' => '',
54  ),
55  'first_name' => Array(
56  'added' => '0.1',
57  'type' => 'text',
58  'default' => '',
59  'is_admin' => 0,
60  ),
61  'last_name' => Array(
62  'added' => '0.1',
63  'type' => 'text',
64  'default' => '',
65  'is_admin' => 0,
66  ),
67  'email' => Array(
68  'added' => '0.1',
69  'type' => 'email',
70  'default' => '',
71  'is_admin' => 0,
72  ),
73  'locale' => Array(
74  'added' => '0.3',
75  'type' => 'text',
76  'default' => '',
77  ),
78  'restrictions' => Array(
79  'added' => '0.2',
80  'type' => 'serialise',
81  'default' => Array(),
82  ),
83  );
84 
85  }//end constructor
86 
87 
88 }//end class
89 
90 ?>