public function NodeRevisionRevertForm::getQuestion in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/node/src/Form/NodeRevisionRevertForm.php \Drupal\node\Form\NodeRevisionRevertForm::getQuestion()
Returns the question to ask the user.
Return value
string The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
1 method overrides NodeRevisionRevertForm::getQuestion()
- NodeRevisionRevertTranslationForm::getQuestion in core/
modules/ node/ src/ Form/ NodeRevisionRevertTranslationForm.php - Returns the question to ask the user.
File
- core/
modules/ node/ src/ Form/ NodeRevisionRevertForm.php, line 77 - Contains \Drupal\node\Form\NodeRevisionRevertForm.
Class
- NodeRevisionRevertForm
- Provides a form for reverting a node revision.
Namespace
Drupal\node\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()),
]);
}