You are here

public function MigrationDeleteForm::getConfirmText in Migrate Tools 8.5

Same name and namespace in other branches
  1. 8 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()
  2. 8.2 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()
  3. 8.3 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()
  4. 8.4 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()

Gather the confirmation text.

Return value

string Translated string.

Overrides EntityConfirmFormBase::getConfirmText

File

src/Form/MigrationDeleteForm.php, line 36

Class

MigrationDeleteForm
Provides the delete form for our Migration entity.

Namespace

Drupal\migrate_tools\Form

Code

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