当前位置: 首页>>代码示例>>PHP>>正文


PHP UserInterface::setPlainPassword方法代码示例

本文整理汇总了PHP中Sylius\Component\User\Model\UserInterface::setPlainPassword方法的典型用法代码示例。如果您正苦于以下问题:PHP UserInterface::setPlainPassword方法的具体用法?PHP UserInterface::setPlainPassword怎么用?PHP UserInterface::setPlainPassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sylius\Component\User\Model\UserInterface的用法示例。


在下文中一共展示了UserInterface::setPlainPassword方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handleChangePassword

 /**
  * @param UserInterface $user
  * @param string        $newPassword
  *
  * @return RedirectResponse
  */
 protected function handleChangePassword(UserInterface $user, $newPassword)
 {
     $user->setPlainPassword($newPassword);
     $this->domainManager->update($user);
     $dispatcher = $this->get('event_dispatcher');
     $dispatcher->dispatch(UserEvents::PASSWORD_RESET_SUCCESS, new GenericEvent($user));
     if ($this->config->isApiRequest()) {
         return $this->handleView($this->view($user, 204));
     }
     $this->addFlash('success', 'sylius.user.password.change.success');
     return new RedirectResponse($this->generateUrl('sylius_account_homepage'));
 }
开发者ID:Strontium-90,项目名称:Sylius,代码行数:18,代码来源:UserController.php

示例2: changePassword

 /**
  * @param UserInterface $user
  * @param string $password
  */
 protected function changePassword(UserInterface $user, $password)
 {
     $user->setPlainPassword($password);
     $this->getContainer()->get('sylius.user.password_updater')->updatePassword($user);
 }
开发者ID:ReissClothing,项目名称:Sylius,代码行数:9,代码来源:ChangePasswordCommand.php

示例3: handleChangePassword

 /**
  * @param Request $request
  * @param RequestConfiguration $configuration
  * @param UserInterface $user
  * @param string $newPassword
  *
  * @return RedirectResponse
  */
 protected function handleChangePassword(Request $request, RequestConfiguration $configuration, UserInterface $user, $newPassword)
 {
     $user->setPlainPassword($newPassword);
     $dispatcher = $this->container->get('event_dispatcher');
     $dispatcher->dispatch(UserEvents::PRE_PASSWORD_CHANGE, new GenericEvent($user));
     $this->manager->flush();
     $this->addFlash('success', 'sylius.user.password.change.success');
     $dispatcher->dispatch(UserEvents::POST_PASSWORD_CHANGE, new GenericEvent($user));
     if (!$configuration->isHtmlRequest()) {
         return $this->viewHandler->handle($configuration, View::create(null, Response::HTTP_NO_CONTENT));
     }
     $redirectRouteName = $request->attributes->get('_sylius[redirect]', 'sylius_account_profile_show', true);
     return new RedirectResponse($this->container->get('router')->generate($redirectRouteName));
 }
开发者ID:gabiudrescu,项目名称:Sylius,代码行数:22,代码来源:UserController.php

示例4: handleChangePassword

 /**
  * @param UserInterface $user
  * @param string        $newPassword
  *
  * @return RedirectResponse
  */
 protected function handleChangePassword(UserInterface $user, $newPassword)
 {
     $user->setPlainPassword($newPassword);
     $dispatcher = $this->get('event_dispatcher');
     $dispatcher->dispatch(UserEvents::PRE_PASSWORD_CHANGE, new GenericEvent($user));
     $this->domainManager->update($user, 'sylius.user.password.change.success');
     $dispatcher->dispatch(UserEvents::POST_PASSWORD_CHANGE, new GenericEvent($user));
     if ($this->config->isApiRequest()) {
         return $this->handleView($this->view($user, 204));
     }
     return new RedirectResponse($this->generateUrl('sylius_account_profile_show'));
 }
开发者ID:scohan,项目名称:Sylius,代码行数:18,代码来源:UserController.php

示例5: handleChangePassword

 /**
  * @param Request $request
  * @param RequestConfiguration $configuration
  * @param UserInterface $user
  * @param string $newPassword
  *
  * @return Response
  */
 protected function handleChangePassword(Request $request, RequestConfiguration $configuration, UserInterface $user, $newPassword)
 {
     $user->setPlainPassword($newPassword);
     $dispatcher = $this->container->get('event_dispatcher');
     $dispatcher->dispatch(UserEvents::PRE_PASSWORD_CHANGE, new GenericEvent($user));
     $this->manager->flush();
     $this->addFlash('success', 'sylius.user.change_password');
     $dispatcher->dispatch(UserEvents::POST_PASSWORD_CHANGE, new GenericEvent($user));
     if (!$configuration->isHtmlRequest()) {
         return $this->viewHandler->handle($configuration, View::create(null, Response::HTTP_NO_CONTENT));
     }
     $redirectRouteName = $this->getSyliusAttribute($request, 'redirect', null);
     Assert::notNull($redirectRouteName, 'Redirect is not configured.');
     return new RedirectResponse($this->container->get('router')->generate($redirectRouteName));
 }
开发者ID:sylius,项目名称:sylius,代码行数:23,代码来源:UserController.php

示例6: handleChangePassword

 /**
  * @param UserInterface $user
  * @param string        $newPassword
  *
  * @return RedirectResponse
  */
 protected function handleChangePassword(RequestConfiguration $configuration, UserInterface $user, $newPassword)
 {
     $user->setPlainPassword($newPassword);
     $dispatcher = $this->container->get('event_dispatcher');
     $dispatcher->dispatch(UserEvents::PRE_PASSWORD_CHANGE, new GenericEvent($user));
     $this->manager->flush();
     $this->addFlash('success', 'sylius.user.password.change.success');
     $dispatcher->dispatch(UserEvents::POST_PASSWORD_CHANGE, new GenericEvent($user));
     if (!$configuration->isHtmlRequest()) {
         return $this->viewHandler->handle(View::create($user, 204));
     }
     return new RedirectResponse($this->container->get('router')->generate('sylius_account_profile_show'));
 }
开发者ID:Spomky,项目名称:Sylius,代码行数:19,代码来源:UserController.php


注:本文中的Sylius\Component\User\Model\UserInterface::setPlainPassword方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。