public function RevertOverridesForm::getConfirmText in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/Form/RevertOverridesForm.php \Drupal\layout_builder\Form\RevertOverridesForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides ConfirmFormBase::getConfirmText
File
- core/
modules/ layout_builder/ src/ Form/ RevertOverridesForm.php, line 82
Class
- RevertOverridesForm
- Reverts the overridden layout to the defaults.
Namespace
Drupal\layout_builder\FormCode
public function getConfirmText() {
return $this
->t('Revert');
}