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