Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
authentication_ldap_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
38  {
39  $this->Asset_Management($pm);
40  $this->vars['name']['default'] = 'LDAP Authentication';
41  $this->vars['log_in_as'] = Array(
42  'type' => 'selection',
43  'parameters' => Array(
44  'options' => Array(
45  'ldap' => 'LDAP User',
46  'local' => 'Local User',
47  ),
48  'multiple' => FALSE,
49  'allow_empty' => FALSE,
50  ),
51  'default' => 'ldap',
52  'added' => '0.2',
53  );
54 
55  }//end constructor
56 
57 
58 }//end class
59 
60 ?>