public 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
File
- core/modules/node/src/Form/NodeRevisionRevertForm.php, line 72
Class
- NodeRevisionRevertForm
- Provides a form for reverting a node revision.
Namespace
Drupal\node\Form
Code
1 2 3 | 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())]); } |
Please login to continue.