public function OpignoAnswerRevisionRevertForm::getQuestion in Opigno module 8
Same name and namespace in other branches
- 3.x src/Form/OpignoAnswerRevisionRevertForm.php \Drupal\opigno_module\Form\OpignoAnswerRevisionRevertForm::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
1 method overrides OpignoAnswerRevisionRevertForm::getQuestion()
- OpignoAnswerRevisionRevertTranslationForm::getQuestion in src/
Form/ OpignoAnswerRevisionRevertTranslationForm.php - Returns the question to ask the user.
File
- src/
Form/ OpignoAnswerRevisionRevertForm.php, line 75
Class
- OpignoAnswerRevisionRevertForm
- Provides a form for reverting a Answer revision.
Namespace
Drupal\opigno_module\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()),
]);
}