public function RemoveSectionForm::getConfirmText in Drupal 10
Same name and namespace in other branches
- 8 core/modules/layout_builder/src/Form/RemoveSectionForm.php \Drupal\layout_builder\Form\RemoveSectionForm::getConfirmText()
- 9 core/modules/layout_builder/src/Form/RemoveSectionForm.php \Drupal\layout_builder\Form\RemoveSectionForm::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/ RemoveSectionForm.php, line 39
Class
- RemoveSectionForm
- Provides a form to confirm the removal of a section.
Namespace
Drupal\layout_builder\FormCode
public function getConfirmText() {
return $this
->t('Remove');
}