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