Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
form_question_type_password_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
20 
32 {
33 
34 
40  {
41  $this->Asset_Management($pm);
42 
43  $this->vars = Array(
44  'default' => Array(
45  'added' => '0.0.1',
46  'type' => 'text',
47  'default' => '',
48  ),
49  'width' => Array(
50  'added' => '0.0.1',
51  'type' => 'text',
52  'default' => '30',
53  ),
54  'verify' => Array(
55  'added' => '0.0.1',
56  'type' => 'boolean',
57  'default' => TRUE,
58  'parameters' => Array(
59  'allow_empty' => FALSE,
60  ),
61  ),
62  'max' => Array(
63  'added' => '0.0.1',
64  'type' => 'text',
65  'default' => '30',
66  ),
67  'min' => Array(
68  'added' => '0.0.1',
69  'type' => 'text',
70  'default' => '2',
71  ),
72  'extra' => Array(
73  'added' => '0.0.1',
74  'type' => 'text',
75  'default' => '',
76  ),
77  );
78 
79  }//end constructor
80 
81 
82 }//end class
83 ?>