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