24 require_once(
"Zend/Auth/Result.php");
25 require_once(
"ProfileTable.php");
26 require_once(
"Profile.php");
31 $this->_username=$username;
32 $this->_password=$password;
38 return new Zend_Auth_Result(-1, null, array());
39 if (!$profile->checkPassword($this->_password))
40 return new Zend_Auth_Result(-3, null, array());
41 return new Zend_Auth_Result(1, $profile, array());
Copyright (C) 2007-2015 Hypertable, Inc.
__construct($username, $password)