function user_pass_reset_url

Generates a unique URL for a user to login and reset their password.

Parameters

object $account: An object containing the user account, which must contain at least the following properties:

  • uid: The user ID number.
  • login: The UNIX timestamp of the user's last login.

Return value

A unique URL that provides a one-time log in for the user, from which they can change their password.

3 calls to user_pass_reset_url()
UserPasswordResetTestCase::testResetImpersonation in drupal/modules/user/user.test
Make sure that users cannot forge password reset URLs of other users.
UserPasswordResetTestCase::testUserPasswordResetLoggedIn in drupal/modules/user/user.test
Test user password reset while logged in.
user_mail_tokens in drupal/modules/user/user.module
Token callback to add unsafe tokens for user mails.

File

drupal/modules/user/user.module, line 2367
Enables the user registration and login system.

Code

function user_pass_reset_url($account) {
  $timestamp = REQUEST_TIME;
  return url("user/reset/{$account->uid}/{$timestamp}/" . user_pass_rehash($account->pass, $timestamp, $account->login, $account->uid), array(
    'absolute' => TRUE,
  ));
}