You are here

public function RemoveBlockForm::getConfirmText in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/src/Form/RemoveBlockForm.php \Drupal\layout_builder\Form\RemoveBlockForm::getConfirmText()
  2. 10 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\Form

Code

public function getConfirmText() {
  return $this
    ->t('Remove');
}