protected final function FileTransfer::fixRemotePath

protected final FileTransfer::fixRemotePath($path, $strip_chroot = TRUE)

Returns a modified path suitable for passing to the server.

If a path is a windows path, makes it POSIX compliant by removing the drive letter. If $this->chroot has a value and $strip_chroot is TRUE, it is stripped from the path to allow for chroot'd filetransfer systems.

Parameters

string $path: The path to modify.

bool $strip_chroot: Whether to remove the path in $this->chroot.

Return value

string The modified path.

File

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

Class

FileTransfer
Defines the base FileTransfer class.

Namespace

Drupal\Core\FileTransfer

Code

protected final function fixRemotePath($path, $strip_chroot = TRUE) {
  $path = $this->sanitizePath($path);
  $path = preg_replace('|^([a-z]{1}):|i', '', $path); // Strip out windows driveletter if its there.
  if ($strip_chroot) {
    if ($this->chroot && strpos($path, $this->chroot) === 0) {
      $path = ($path == $this->chroot) ? '' : substr($path, strlen($this->chroot));
    }
  }
  return $path;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!FileTransfer!FileTransfer.php/function/FileTransfer::fixRemotePath/8.1.x