public function OpignoAnswerRevisionRevertTranslationForm::getQuestion in Opigno module 3.x
Same name and namespace in other branches
- 8 src/Form/OpignoAnswerRevisionRevertTranslationForm.php \Drupal\opigno_module\Form\OpignoAnswerRevisionRevertTranslationForm::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 OpignoAnswerRevisionRevertForm::getQuestion
File
- src/
Form/ OpignoAnswerRevisionRevertTranslationForm.php, line 70  
Class
- OpignoAnswerRevisionRevertTranslationForm
 - Provides a form for reverting a Answer revision for a single translation.
 
Namespace
Drupal\opigno_module\FormCode
public function getQuestion() {
  return t('Are you sure you want to revert @language translation to the revision from %revision-date?', [
    '@language' => $this->languageManager
      ->getLanguageName($this->langcode),
    '%revision-date' => $this->dateFormatter
      ->format($this->revision
      ->getRevisionCreationTime()),
  ]);
}