function FileTransfer::setChroot in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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.
1 call to FileTransfer::setChroot()
- FileTransfer::__get in core/
lib/ Drupal/ Core/ FileTransfer/ FileTransfer.php - Implements the magic __get() method.
File
- core/
lib/ Drupal/ Core/ FileTransfer/ FileTransfer.php, line 381 - Contains \Drupal\Core\FileTransfer\FileTransfer.
Class
- FileTransfer
- Defines the base FileTransfer class.
Namespace
Drupal\Core\FileTransferCode
function setChroot() {
$this->chroot = $this
->findChroot();
$this->jail = $this
->fixRemotePath($this->jail);
}