You are here

public function FTP::getSettingsForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/FileTransfer/FTP.php \Drupal\Core\FileTransfer\FTP::getSettingsForm()

Returns a form to collect connection settings credentials.

Implementing classes can either extend this form with fields collecting the specific information they need, or override it entirely.

Return value

array An array that contains a Form API definition.

Overrides FileTransfer::getSettingsForm

File

core/lib/Drupal/Core/FileTransfer/FTP.php, line 43

Class

FTP
Defines the base class for FTP implementations.

Namespace

Drupal\Core\FileTransfer

Code

public function getSettingsForm() {
  $form = parent::getSettingsForm();
  $form['advanced']['port']['#default_value'] = 21;
  return $form;
}