Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
authentication.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset.inc';
19 
20 
32 class Authentication extends Asset
33 {
34 
35 
42  function Authentication($assetid=0)
43  {
44  $this->Asset($assetid);
45 
46  }//end constructor
47 
48 
59  function morph($new_type_code)
60  {
61  trigger_localised_error('CORE0091', E_USER_WARNING, $GLOBALS['SQ_SYSTEM']->am->getTypeInfo($this->type(), 'name'));
62  return FALSE;
63 
64  }//end morph()
65 
66 
73  function canDelete()
74  {
75  return FALSE;
76 
77  }//end canDelete()
78 
79 
86  function canClone()
87  {
88  return FALSE;
89 
90  }//end canClone()
91 
92 
102  function _getName($short_name=FALSE)
103  {
104  return $this->attr('name');
105 
106  }//end _getName()
107 
108 
117  function &locateUser($username)
118  {
119  $null = NULL;
120  return $null;
121 
122  }//end locateUser()
123 
124 
137  function &authenticateUser($username, $password)
138  {
139  $null = NULL;
140  return $null;
141 
142  }//end authenticateUser()
143 
144 
156  function &authenticateHttpUser($username)
157  {
158  $null = NULL;
159  return $null;
160 
161  }//end authenticateHttpUser()
162 
163 
164 }//end class
165 
166 ?>