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


PHP User::getPlainPassword方法代碼示例

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


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

示例1: updatePassword

 /**
  * Updates a user password if a plain password is set
  *
  * @param User $user
  */
 public function updatePassword(User $user)
 {
     if (0 !== strlen($password = $user->getPlainPassword())) {
         $encoder = $this->getEncoder($user);
         $user->setPassword($encoder->encodePassword($password, $user->getSalt()));
         $user->eraseCredentials();
     }
 }
開發者ID:ashutosh-srijan,項目名稱:findit_akeneo,代碼行數:13,代碼來源:UserManager.php

示例2: testUpdateUser

 public function testUpdateUser()
 {
     $password = 'password';
     $encodedPassword = 'encodedPassword';
     $email = 'test@test.com';
     $user = new User();
     $user->setUsername($email)->setEmail($email)->setPlainPassword($password);
     $encoder = $this->getMock('Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface');
     $encoder->expects($this->once())->method('encodePassword')->with($user->getPlainPassword(), $user->getSalt())->will($this->returnValue($encodedPassword));
     $this->ef->expects($this->once())->method('getEncoder')->with($user)->will($this->returnValue($encoder));
     $this->om->expects($this->once())->method('persist')->with($this->equalTo($user));
     $this->om->expects($this->once())->method('flush');
     $this->metadata->expects($this->once())->method('getAssociationTargetClass')->willReturn('Symfony\\Component\\Security\\Core\\Role\\RoleInterface');
     $repository = $this->getMockBuilder('Oro\\Bundle\\UserBundle\\Entity\\Repository\\UserApiRepository')->disableOriginalConstructor()->getMock();
     $this->om->expects($this->any())->method('getRepository')->will($this->returnValue($repository));
     $repository->expects($this->once())->method('findOneBy')->with($this->equalTo(['role' => User::ROLE_DEFAULT]))->will($this->returnValue(new Role(User::ROLE_DEFAULT)));
     $this->userManager->updateUser($user);
     $this->assertEquals($email, $user->getEmail());
     $this->assertEquals($encodedPassword, $user->getPassword());
 }
開發者ID:Maksold,項目名稱:platform,代碼行數:20,代碼來源:UserManagerTest.php

示例3: testSendChangePasswordEmail

 public function testSendChangePasswordEmail()
 {
     $this->assertSendCalled(Processor::TEMPLATE_USER_CHANGE_PASSWORD, ['entity' => $this->user, 'plainPassword' => $this->user->getPlainPassword()], $this->buildMessage($this->user->getEmail()));
     $this->mailProcessor->sendChangePasswordEmail($this->user);
 }
開發者ID:ramunasd,項目名稱:platform,代碼行數:5,代碼來源:ProcessorTest.php

示例4: testPassword

 public function testPassword()
 {
     $user = new User();
     $pass = 'anotherPassword';
     $user->setPassword($pass);
     $user->setPlainPassword($pass);
     $this->assertEquals($pass, $user->getPassword());
     $this->assertEquals($pass, $user->getPlainPassword());
     $user->eraseCredentials();
     $this->assertNull($user->getPlainPassword());
 }
開發者ID:ashutosh-srijan,項目名稱:findit_akeneo,代碼行數:11,代碼來源:UserTest.php


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