コード例 #1
0
 public function allowPasswordForUser(Kwf_Model_Row_Interface $user)
 {
     return $this->_auth->allowPasswordForUser($user->getProxiedRow());
 }
コード例 #2
0
 public function validateAutoLoginToken(Kwf_Model_Row_Interface $row, $token)
 {
     return $this->_auth->validateAutoLoginToken($row->getProxiedRow(), $token);
 }
コード例 #3
0
ファイル: Model.php プロジェクト: nsams/koala-framework
 protected function _logLogin(Kwf_Model_Row_Interface $row)
 {
     $this->getProxyModel()->logLogin($row->getProxiedRow());
 }
コード例 #4
0
 public function sendLostPasswordMail(Kwf_Model_Row_Interface $row, Kwf_User_Row $kwfUserRow)
 {
     return $this->_auth->sendLostPasswordMail($row->getProxiedRow(), $kwfUserRow);
 }
コード例 #5
0
 public function clearActivationToken(Kwf_Model_Row_Interface $row)
 {
     return $this->_auth->clearActivationToken($row->getProxiedRow());
 }