FileTransfer::setChroot()
Sets the chroot and changes the jail to match the correct path scheme.
File
- core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 376
Class
- FileTransfer
- Defines the base FileTransfer class.
Namespace
Drupal\Core\FileTransfer
Code
1 2 3 4 | function setChroot() { $this -> chroot = $this ->findChroot(); $this ->jail = $this ->fixRemotePath( $this ->jail); } |
Please login to continue.