本文整理汇总了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'));
}
示例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);
}
示例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));
}
示例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'));
}
示例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));
}
示例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'));
}