本文整理汇总了PHP中Illuminate\Contracts\Auth\CanResetPassword类的典型用法代码示例。如果您正苦于以下问题:PHP CanResetPassword类的具体用法?PHP CanResetPassword怎么用?PHP CanResetPassword使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CanResetPassword类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword|User|ServiceUser $user
* @param string $password
*/
protected function resetPassword($user, $password)
{
$user->password_text = bcrypt($password);
$user->save();
/** @noinspection PhpUndefinedMethodInspection */
Auth::login($user);
}
示例2: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
$user->password = bcrypt($password);
$user->save();
event(new UserPasswordChanged($user, $password));
Auth::login($user);
}
示例3: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
$passwordService = new PasswordService();
$user->user_pass = $passwordService->wp_hash_password($password);
$user->save();
Auth::guard($this->getGuard())->login($user);
}
示例4: emailResetLink
/**
* Send the password reminder e-mail.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $token
* @param \Closure|null $callback
*
* @return \Orchestra\Contracts\Notification\Receipt
*/
public function emailResetLink(RemindableContract $user, $token, Closure $callback = null)
{
// We will use the reminder view that was given to the broker to display the
// password reminder e-mail. We'll pass a "token" variable into the views
// so that it may be displayed for an user to click for password reset.
$data = ['user' => $user instanceof Arrayable ? $user->toArray() : $user, 'token' => $token];
$message = Message::create($this->emailView, $data);
return $this->mailer->send($user, $message, $callback);
}
示例5: sendNewPassword
public function sendNewPassword(CanResetPassword $user)
{
$password = str_random(8);
$user->password = $password;
$user->save();
$this->mailer->send('auth::emails.new_password', compact('user', 'password'), function ($m) use($user) {
$m->to($user->getEmailForPasswordReset());
});
}
示例6: requestChangePassword
/**
* Generate a token for password change and saves it in
* the Reminder table with the email of the
* user.
*
* @param CanResetPasswordContract $account An existent user.
*
* @return string Password reset token.
*/
public function requestChangePassword(CanResetPasswordContract $account)
{
$token = $this->generateToken();
$values = ['email' => $account->getEmailForPasswordReset(), 'token' => $token, 'created_at' => new \DateTime()];
$reminder = $this->getReminder()->fill($values);
$reminder->save();
$this->sendEmail($account, $token);
return $token;
}
示例7: emailResetLink
/**
* Send the password reset link via e-mail.
* Overrides to use the mail queue.
*
* @override
* @see PasswordBroker::emailResetLink()
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $token
* @param \Closure|null $callback
* @return int
*/
public function emailResetLink(CanResetPasswordContract $user, $token, Closure $callback = null)
{
// We will use the reminder view that was given to the broker to display the
// password reminder e-mail. We'll pass a "token" variable into the views
// so that it may be displayed for an user to click for password reset.
$view = $this->emailView;
return $this->mailer->queue($view, compact('token', 'user'), function ($m) use($user, $token, $callback) {
$m->to($user->getEmailForPasswordReset());
if (!is_null($callback)) {
call_user_func($callback, $m, $user, $token);
}
});
}
示例8: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @author Cali
*/
protected function resetPassword($user, $password)
{
$user->password = bcrypt($password);
$user->save();
Auth::guard($this->getGuard())->login($user);
}
示例9: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
/** @var $user User */
$user->setPassword($this->hasher->make($password));
$this->em->persist($user);
$this->em->flush();
Auth::guard($this->getGuard())->login($user);
}
示例10: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
//$user->password = bcrypt($password);
// Sentry hashes password for us
$user->password = $password;
$user->save();
//Auth::login($user);
}
示例11: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
$user->password = bcrypt($password);
$user->save();
$this->auth->login($user);
}
示例12: createEmailResetLink
/**
* Send the password reset link via e-mail.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $token
* @param \stdClass $viewData
* @param \Closure|null $callback
*
* @return int
*/
private function createEmailResetLink(CanResetPasswordContract $user, $token, \stdClass $viewData, Closure $callback = null)
{
// We will use the reminder view that was given to the broker to display the
// password reminder e-mail. We'll pass a "token" variable into the views
// so that it may be displayed for an user to click for password reset.
$email = $viewData;
$email->token = $token;
$this->mailer->send($this->emailView, compact('email'), function ($m) use($user, $token, $callback) {
/**
* @var \Illuminate\Mail\Message $m
*/
$m->to($user->getEmailForPasswordReset());
if (!is_null($callback)) {
call_user_func($callback, $m, $user, $token);
}
});
}
示例13: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
$user->passwd = Hash::make($user . $password);
$user->save();
Auth::login($user);
}
示例14: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
*/
protected function resetPassword($user, $password)
{
$user->password = bcrypt($password);
$user->save();
$this->fireEvent('reset.success', request(), 'Password reset', false);
auth()->login($user);
}
示例15: resetPassword
/**
* Reset the given user's password.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $password
* @return void
*/
protected function resetPassword($user, $password)
{
$user->password = $password;
// no need to bcrypt here as passwords are automatically hashed in User Model
$user->save();
Auth::login($user);
}