You are here

public function IncrementalForm::getConfirmText in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal_ui/src/Form/IncrementalForm.php \Drupal\migrate_drupal_ui\Form\IncrementalForm::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/IncrementalForm.php, line 105

Class

IncrementalForm
Migrate Upgrade Incremental form.

Namespace

Drupal\migrate_drupal_ui\Form

Code

public function getConfirmText() {
  return $this
    ->t('Import new configuration and content from old site');
}