21 defined(
'XOOPS_ROOT_PATH') or die('Restricted access');
39 function XoopsAuth(&$dao)
48 function authenticate()
50 $authenticated =
false;
52 return $authenticated;
61 function setErrors($err_no, $err_str)
63 $this->_errors[$err_no] = trim($err_str);
74 return $this->_errors;
83 function getHtmlErrors()
87 if ($xoopsConfig[
'debug_mode'] == 1 || $xoopsConfig[
'debug_mode'] == 2) {
88 if (!empty($this->_errors)) {
89 foreach ($this->_errors as $errstr) {
90 $ret .= $errstr .
'<br/>';