@@ -99,19 +101,42 @@ public function buildForm(array $form, FormStateInterface $form_state) {
'#description'=>$this->t('Provide the information to access the Drupal site you want to upgrade. Files can be imported into the upgraded site as well. See the <a href=":url">Upgrade documentation for more detailed instructions</a>.',[':url'=>'https://www.drupal.org/upgrade/migrate']),
'#description'=>$this->t('To import files from your current Drupal site, enter a local file directory containing your site (e.g. /var/www/docroot), or your site address (for example http://example.com).'),
'#states'=>[
'visible'=>[
@@ -176,6 +228,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
$form['source']['source_base_path']=[
'#type'=>'textfield',
'#title'=>$this->t('Document root for public files'),
'#description'=>$this->t('To import public files from your current Drupal site, enter a local file directory containing your site (e.g. /var/www/docroot), or your site address (for example http://example.com).'),
'#states'=>[
'visible'=>[
@@ -188,7 +241,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
$form['source']['source_private_file_path']=[
'#type'=>'textfield',
'#title'=>$this->t('Document root for private files'),
'#description'=>$this->t('To import private files from your current Drupal site, enter a local file directory containing your site (e.g. /var/www/docroot). Leave blank to use the same value as Public files directory.'),
'#states'=>[
'visible'=>[
@@ -205,6 +258,12 @@ public function buildForm(array $form, FormStateInterface $form_state) {