You are here

public function FileTransfer::setChroot in Drupal 10

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

Sets the chroot and changes the jail to match the correct path scheme.

File

core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 379

Class

FileTransfer
Defines the base FileTransfer class.

Namespace

Drupal\Core\FileTransfer

Code

public function setChroot() {
  $this->chroot = $this
    ->findChroot();
  $this->jail = $this
    ->fixRemotePath($this->jail);
}