public function HeartbeatStreamRevisionRevertForm::getQuestion in Heartbeat 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 HeartbeatStreamRevisionRevertForm::getQuestion()
- HeartbeatStreamRevisionRevertTranslationForm::getQuestion in src/
Form/ HeartbeatStreamRevisionRevertTranslationForm.php  - Returns the question to ask the user.
 
File
- src/
Form/ HeartbeatStreamRevisionRevertForm.php, line 75  
Class
- HeartbeatStreamRevisionRevertForm
 - Provides a form for reverting a Heartbeat stream revision.
 
Namespace
Drupal\heartbeat\FormCode
public function getQuestion() {
  return t('Are you sure you want to revert to the revision from %revision-date?', [
    '%revision-date' => $this->dateFormatter
      ->format($this->revision
      ->getRevisionCreationTime()),
  ]);
}