Inherited by tx_sv_auth.
Public Member Functions | |
initAuth ($mode, $loginData, $info, &$pObj) | |
init service | |
writelog ($type, $action, $error, $details_nr, $details, $data, $tablename='', $recuid='', $recpid='') | |
Writes to log database table in pObj. | |
Public Attributes | |
$pObj | |
$mode | |
$login = array() | |
$info = array() | |
service description array | |
$db_user = array() | |
$db_groups = array() | |
$writeAttemptLog = 0 |
|
init service
Definition at line 55 of file class.tx_sv_authbase.php. References t3lib_svbase::getServiceOption(). 00055 { 00056 00057 $this->pObj = &$pObj; 00058 00059 $this->mode = $mode; 00060 $this->login = $loginData; 00061 $this->info = $info; 00062 00063 $this->db_user = $this->getServiceOption('db_user', $info['db_user'], FALSE); 00064 $this->db_groups = $this->getServiceOption('db_groups', $info['db_groups'], FALSE); 00065 00066 $this->writeAttemptLog = $this->pObj->writeAttemptLog; 00067 $this->writeDevLog = $this->pObj->writeDevLog; 00068 }
|
|
Writes to log database table in pObj.
Definition at line 85 of file class.tx_sv_authbase.php. References error(). Referenced by tx_sv_auth::authUser(), and tx_sv_auth::getUser(). 00085 {
00086 if($this->pObj->writeAttemptLog) {
00087 $this->pObj->writelog($type,$action,$error,$details_nr,$details,$data,$tablename,$recuid,$recpid);
00088 }
00089 }
|
|
Definition at line 42 of file class.tx_sv_authbase.php. |
|
Definition at line 41 of file class.tx_sv_authbase.php. |
|
service description array
Reimplemented from t3lib_svbase. Definition at line 39 of file class.tx_sv_authbase.php. |
|
Definition at line 38 of file class.tx_sv_authbase.php. |
|
Definition at line 36 of file class.tx_sv_authbase.php. |
|
Definition at line 34 of file class.tx_sv_authbase.php. |
|
Definition at line 44 of file class.tx_sv_authbase.php. |