public function allowPasswordForUser(Kwf_Model_Row_Interface $user)
 {
     return $this->_auth->allowPasswordForUser($user->getProxiedRow());
 }
 public function validateAutoLoginToken(Kwf_Model_Row_Interface $row, $token)
 {
     return $this->_auth->validateAutoLoginToken($row->getProxiedRow(), $token);
 }
Exemple #3
0
 protected function _logLogin(Kwf_Model_Row_Interface $row)
 {
     $this->getProxyModel()->logLogin($row->getProxiedRow());
 }
 public function sendLostPasswordMail(Kwf_Model_Row_Interface $row, Kwf_User_Row $kwfUserRow)
 {
     return $this->_auth->sendLostPasswordMail($row->getProxiedRow(), $kwfUserRow);
 }
 public function clearActivationToken(Kwf_Model_Row_Interface $row)
 {
     return $this->_auth->clearActivationToken($row->getProxiedRow());
 }