本文整理汇总了PHP中frontend\models\ResetPasswordForm::resetPassword方法的典型用法代码示例。如果您正苦于以下问题:PHP ResetPasswordForm::resetPassword方法的具体用法?PHP ResetPasswordForm::resetPassword怎么用?PHP ResetPasswordForm::resetPassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类frontend\models\ResetPasswordForm
的用法示例。
在下文中一共展示了ResetPasswordForm::resetPassword方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionResetPassword
public function actionResetPassword($token)
{
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
throw new BadRequestHttpException($e->getMessage());
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('success', 'New password was saved.');
return $this->goHome();
}
return $this->render('resetPassword', ['model' => $model]);
}
示例2: actionResetPassword
public function actionResetPassword($token)
{
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
throw new BadRequestHttpException($e->getMessage());
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('success', 'Your password has been reset successfully.');
return $this->redirect(array('/auth/login/'));
}
return $this->render('resetPassword', ['model' => $model]);
}
示例3: testResetCorrectToken
public function testResetCorrectToken()
{
$form = new ResetPasswordForm($this->user[0]['password_reset_token']);
expect('password should be resetted', $form->resetPassword())->true();
}
示例4: actionResetPassword
public function actionResetPassword($token)
{
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
Yii::$app->getSession()->setFlash('danger', ['type' => 'danger', 'duration' => 5000, 'icon' => 'glyphicon glyphicon-exclamation-sign', 'message' => 'Parámetro inválido', 'title' => 'Reestablecer contraseña', 'positonY' => 'top', 'positonX' => 'center']);
return $this->goHome();
//throw new BadRequestHttpException($e->getMessage()); al mostrar el error lo hace en el layout main en vez de landing
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('success', ['type' => 'success', 'duration' => 5000, 'icon' => 'glyphicon glyphicon-user', 'message' => 'La contraseña se ha guardado con éxito.', 'title' => 'Reestablecer contraseña', 'positonY' => 'top', 'positonX' => 'center']);
return $this->goHome();
}
$user = User::findByPasswordResetToken($token);
if (!$user) {
throw new InvalidParamException('Wrong password reset token.');
}
return $this->renderAjax('resetPassword', ['model' => $model, 'user' => $user]);
}
示例5: actionResetPassword
/**
* Resets password.
*
* @param string $token
* @return mixed
*/
public function actionResetPassword($token)
{
$model = new ResetPasswordForm(['token' => $token]);
if (!$model->validate(['token'])) {
Yii::$app->session->addFlash('error', Yii::t('authorization', 'Wrong password reset token provided. {0}', [Html::a(Yii::t('authorization', 'Resend?'), ['site/request-password-reset'])]));
return $this->goHome();
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->session->addFlash('success', Yii::t('frontend', 'New password was saved. You can login now.'));
return $this->redirect(['login']);
}
return $this->render('resetPassword', ['model' => $model]);
}
示例6: testResetCorrectToken
public function testResetCorrectToken()
{
$user = $this->tester->grabFixture('user', 0);
$form = new ResetPasswordForm($user['password_reset_token']);
expect_that($form->resetPassword());
}
示例7: actionResetPassword
public function actionResetPassword()
{
$model = new ResetPasswordForm();
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('success', '密码修改成功');
return $this->goHome();
}
return $this->render('resetPassword', ['model' => $model]);
}
示例8: actionResetPassword
/**
* Resets password.
*
* @param string $token
* @return mixed
* @throws BadRequestHttpException
*/
public function actionResetPassword($token)
{
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
throw new BadRequestHttpException($e->getMessage());
}
$this->layout = 'empty_layout';
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->session->setFlash('success', 'Новый пароль сохранен.');
return $this->goHome();
}
return $this->render('resetPassword', ['model' => $model]);
}
示例9: actionResetPassword
public function actionResetPassword($token)
{
$this->title = '重置密码' . ' - ' . Yii::$app->name;
$this->description = '';
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
throw new NotFoundHttpException($e->getMessage());
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('success', '重置密码成功。');
return $this->goHome();
}
return $this->render('resetPassword', ['model' => $model]);
}
示例10: actionResetPassword
public function actionResetPassword($key)
{
try {
$model = new ResetPasswordForm($key);
} catch (InvalidParamException $e) {
throw new BadRequestHttpException($e->getMessage());
}
if ($model->load(Yii::$app->request->post())) {
if ($model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('warning', 'Пароль изменен.');
return $this->redirect(['/main/login']);
}
}
return $this->render('resetPassword', ['model' => $model]);
}
示例11: actionResetPassword
public function actionResetPassword($token)
{
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
throw new BadRequestHttpException($e->getMessage());
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Yii::$app->getSession()->setFlash('success', 'Пароль успешно изменён.');
return $this->redirect('/site/login');
}
return $this->render('resetPassword', ['model' => $model]);
}
示例12: actionResetPassword
/**
* Resets password.
*
* @param string $token
* @return mixed
* @throws BadRequestHttpException
*/
public function actionResetPassword($token)
{
try {
$model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
throw new BadRequestHttpException($e->getMessage());
}
if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) {
Alert::add(Yii::t('msg', 'New password was saved. Now you can log in.'));
return $this->goHome();
}
return $this->render('resetPassword', ['model' => $model]);
}