You are here

public function ConfirmationForm::getQuestion in Auto Purge Users 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/ConfirmationForm.php \Drupal\purge_users\Form\ConfirmationForm::getQuestion()
  2. 8 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 31

Class

ConfirmationForm
Class ConfirmationForm.

Namespace

Drupal\purge_users\Form

Code

public function getQuestion() {
  return $this
    ->t('Purge user confirmation');
}