public function MigrationDeleteForm::getConfirmText in Migrate Tools 8
Same name and namespace in other branches
- 8.5 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()
- 8.2 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()
- 8.3 src/Form/MigrationDeleteForm.php \Drupal\migrate_tools\Form\MigrationDeleteForm::getConfirmText()
- 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 41 - Contains Drupal\migrate_tools\Form\MigrationDeleteForm.
Class
- MigrationDeleteForm
- Class MigrationDeleteForm.
Namespace
Drupal\migrate_tools\FormCode
public function getConfirmText() {
return $this
->t('Delete Migration');
}