當前位置: 首頁>>代碼示例>>PHP>>正文


PHP User::getPassword方法代碼示例

本文整理匯總了PHP中Drupal\user\Entity\User::getPassword方法的典型用法代碼示例。如果您正苦於以下問題:PHP User::getPassword方法的具體用法?PHP User::getPassword怎麽用?PHP User::getPassword使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Drupal\user\Entity\User的用法示例。


在下文中一共展示了User::getPassword方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testAuthenticateWithCorrectPasswordAndNewPasswordHash

 /**
  * Tests the authenticate method with a correct password and new password hash.
  *
  * @covers ::authenticate
  */
 public function testAuthenticateWithCorrectPasswordAndNewPasswordHash()
 {
     $this->testUser->expects($this->once())->method('id')->will($this->returnValue(1));
     $this->testUser->expects($this->once())->method('setPassword')->with($this->password);
     $this->testUser->expects($this->once())->method('save');
     $this->userStorage->expects($this->once())->method('loadByProperties')->with(array('name' => $this->username))->will($this->returnValue(array($this->testUser)));
     $this->passwordService->expects($this->once())->method('check')->with($this->password, $this->testUser->getPassword())->will($this->returnValue(TRUE));
     $this->passwordService->expects($this->once())->method('needsRehash')->with($this->testUser->getPassword())->will($this->returnValue(TRUE));
     $this->assertsame(1, $this->userAuth->authenticate($this->username, $this->password));
 }
開發者ID:eigentor,項目名稱:tommiblog,代碼行數:15,代碼來源:UserAuthTest.php

示例2: syncSmfPassword

 /**
  * Sets new hash password in smf
  *
  * @param \Drupal\User\Entity\User $drupalUser
  * @param \stdClass $smfMember
  */
 protected function syncSmfPassword(\Drupal\User\Entity\User $drupalUser, \stdClass $smfMember)
 {
     /**
      * @var \Drupal\Core\Database\Connection $this ->smfConnection
      */
     $hashedPasswd = sha1($drupalUser->getPassword());
     $id_member = $this->smfConnection->select('members', 'm')->fields('m', ['id_member'])->condition('m.member_name', $drupalUser->getUsername())->condition('m.passwd', $hashedPasswd)->execute()->fetchField();
     if (!$id_member) {
         $updateResult = $this->smfConnection->update('members')->fields(['passwd' => $hashedPasswd, 'password_salt' => ''])->condition('member_name', $drupalUser->getUsername())->execute();
         if ($updateResult) {
             $smfMember->passwd = $hashedPasswd;
         }
     }
 }
開發者ID:DimDev,項目名稱:smfbridge,代碼行數:20,代碼來源:Member.php


注:本文中的Drupal\user\Entity\User::getPassword方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。