public function MassPasswordResetConfirmForm::getQuestion in Mass Password Reset 8
Same name and namespace in other branches
- 2.x src/Form/MassPasswordResetConfirmForm.php \Drupal\mass_pwreset\Form\MassPasswordResetConfirmForm::getQuestion()
Returns the question to ask the user.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- src/
Form/ MassPasswordResetConfirmForm.php, line 38
Class
- MassPasswordResetConfirmForm
- Mass Password Reset Form.
Namespace
Drupal\mass_pwreset\FormCode
public function getQuestion() {
return $this
->t('Confirm password resets?');
}