public function ChangePasswordResetForm::buildForm in Password Separate Form 8
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
\Drupal\Core\Session\AccountInterface $user: User requesting reset.
string $expiration_date: Formatted expiration date for the login link, or NULL if the link does not expire.
int $timestamp: The current timestamp.
string $hash: Login link hash.
Overrides FormInterface::buildForm
File
- src/
Form/ ChangePasswordResetForm.php, line 67
Class
- ChangePasswordResetForm
- Form controller for the user password forms.
Namespace
Drupal\change_pwd_page\FormCode
public function buildForm(array $form, FormStateInterface $form_state, AccountInterface $user = NULL, $expiration_date = NULL, $timestamp = NULL, $hash = NULL) {
if ($expiration_date) {
$form['message'] = [
'#markup' => $this
->t('<p>This is a one-time login for %user_name and will expire on
%expiration_date.</p><p>Click on this button to log in to the site and change your password.</p>', [
'%user_name' => $user
->getDisplayName(),
'%expiration_date' => $expiration_date,
]),
];
$form['#title'] = $this
->t('Reset password');
}
else {
// No expiration for first time login.
$form['message'] = [
'#markup' => $this
->t('<p>This is a one-time login for %user_name.</p><p>Click on this button to log in to the site and change your password.</p>', [
'%user_name' => $user
->getDisplayName(),
]),
];
$form['#title'] = $this
->t('Set password');
}
$form['user'] = [
'#type' => 'value',
'#value' => $user,
];
$form['timestamp'] = [
'#type' => 'value',
'#value' => $timestamp,
];
$form['help'] = [
'#markup' => '<p>' . $this
->t('This login can be used only once.') . '</p>',
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Log in'),
];
return $form;
}