You are here

public function SitewideAlertRevisionRevertForm::getQuestion in Sitewide Alert 8

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

1 method overrides SitewideAlertRevisionRevertForm::getQuestion()
SitewideAlertRevisionRevertTranslationForm::getQuestion in src/Form/SitewideAlertRevisionRevertTranslationForm.php
Returns the question to ask the user.

File

src/Form/SitewideAlertRevisionRevertForm.php, line 75

Class

SitewideAlertRevisionRevertForm
Provides a form for reverting a Sitewide Alert revision.

Namespace

Drupal\sitewide_alert\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to revert to the revision from %revision-date?', [
    '%revision-date' => $this->dateFormatter
      ->format($this->revision
      ->getRevisionCreationTime()),
  ]);
}