You are here

public function BlazyDeleteFormBase::getConfirmText in Blazy 8.2

Returns a caption for the button that confirms the action.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.

Overrides EntityConfirmFormBase::getConfirmText

File

blazy_ui/src/Form/BlazyDeleteFormBase.php, line 40

Class

BlazyDeleteFormBase
Builds the form to delete an optionset.

Namespace

Drupal\blazy_ui\Form

Code

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