Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_password_change_form_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
32 {
33 
34 
40  {
41  Asset_Management::__construct($pm);
42 
43  $this->vars = Array(
44  'password_change_contents' => Array(
45  'added' => '0.0.1',
46  'type' => 'serialise',
47  'default' => Array(),
48  'description' => 'Holds the processed contents array for the password change section',
49  ),
50  'give_password_old_focus' => Array(
51  'added' => '0.0.1',
52  'type' => 'boolean',
53  'default' => FALSE,
54  'description' => 'Whether to give the password box focus on load of the page',
55  'parameters' => Array(
56  'allow_empty' => FALSE,
57  ),
58  ),
59  'forward_www_vars' => Array(
60  'added' => '0.0.1',
61  'type' => 'boolean',
62  'default' => FALSE,
63  'description' => 'When true will attempt to forward all the GET and POST vars (unable to files)',
64  'parameters' => Array(
65  'allow_empty' => FALSE,
66  ),
67  ),
68  );
69 
70  }//end constructor
71 
72 
73 }//end class
74 ?>