public function ConfirmationForm::getQuestion in Auto Purge Users 8
Same name and namespace in other branches
- 8.3 src/Form/ConfirmationForm.php \Drupal\purge_users\Form\ConfirmationForm::getQuestion()
- 8.2 src/Form/ConfirmationForm.php \Drupal\purge_users\Form\ConfirmationForm::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/ ConfirmationForm.php, line 27
Class
- ConfirmationForm
- Class ConfirmationForm.
Namespace
Drupal\purge_users\FormCode
public function getQuestion() {
return $this
->t('Purge user confirmation');
}