You are here

public function CredentialForm::getConfirmText in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal_ui/src/Form/CredentialForm.php \Drupal\migrate_drupal_ui\Form\CredentialForm::getConfirmText()
  2. 10 core/modules/migrate_drupal_ui/src/Form/CredentialForm.php \Drupal\migrate_drupal_ui\Form\CredentialForm::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/CredentialForm.php, line 314

Class

CredentialForm
Migrate Upgrade database credential form.

Namespace

Drupal\migrate_drupal_ui\Form

Code

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