You are here

public function Local::__construct in Drupal 10

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

Constructs a Drupal\Core\FileTransfer\FileTransfer object.

Parameters

$jail: The full path where all file operations performed by this object will be restricted to. This prevents the FileTransfer classes from being able to touch other parts of the filesystem.

Overrides FileTransfer::__construct

File

core/lib/Drupal/Core/FileTransfer/Local.php, line 25

Class

Local
Defines the local connection class for copying files as the httpd user.

Namespace

Drupal\Core\FileTransfer

Code

public function __construct($jail, FileSystemInterface $file_system) {
  parent::__construct($jail);
  $this->fileSystem = $file_system;
}