public function SSH::getSettingsForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/FileTransfer/SSH.php \Drupal\Core\FileTransfer\SSH::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/ SSH.php, line 145 - Contains \Drupal\Core\FileTransfer\SSH.
Class
- SSH
- The SSH connection class for the update module.
Namespace
Drupal\Core\FileTransferCode
public function getSettingsForm() {
$form = parent::getSettingsForm();
$form['advanced']['port']['#default_value'] = 22;
return $form;
}