public function ReviewForm::getConfirmText in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal_ui/src/Form/ReviewForm.php \Drupal\migrate_drupal_ui\Form\ReviewForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
string The form confirmation text.
Overrides MigrateUpgradeFormBase::getConfirmText
File
- core/
modules/ migrate_drupal_ui/ src/ Form/ ReviewForm.php, line 253
Class
- ReviewForm
- Migrate Upgrade review form.
Namespace
Drupal\migrate_drupal_ui\FormCode
public function getConfirmText() {
return $this
->t('Perform upgrade');
}