You are here

public function EntityDeleteForm::getConfirmText in Backup and Migrate 5.0.x

Same name and namespace in other branches
  1. 8.4 src/Form/EntityDeleteForm.php \Drupal\backup_migrate\Form\EntityDeleteForm::getConfirmText()

Returns a caption for the button that confirms the action.

Return value

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

Overrides EntityConfirmFormBase::getConfirmText

File

src/Form/EntityDeleteForm.php, line 33

Class

EntityDeleteForm
Builds the form to delete config entities.

Namespace

Drupal\backup_migrate\Form

Code

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