You are here

public function YamlFormToWebformMigrateForm::getQuestion in YAML Form 8

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides ConfirmFormInterface::getQuestion

File

modules/yamlform_to_webform/src/Form/YamlFormToWebformMigrateForm.php, line 56

Class

YamlFormToWebformMigrateForm
YAML Form to Webform migrate form.

Namespace

Drupal\yamlform_to_webform\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to migrate from YAML Form 8.x-1.x to Webform 8.x-5.x?');
}