本文整理匯總了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));
}
示例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;
}
}
}