protected function SSH::copyFileJailed

protected SSH::copyFileJailed($source, $destination)

Copies a file.

Parameters

string $source: The source file.

string $destination: The destination file.

Overrides FileTransfer::copyFileJailed

File

core/lib/Drupal/Core/FileTransfer/SSH.php, line 48

Class

SSH
The SSH connection class for the update module.

Namespace

Drupal\Core\FileTransfer

Code

protected function copyFileJailed($source, $destination) {
  if (!@ssh2_scp_send($this->connection, $source, $destination)) {
    throw new FileTransferException('Cannot copy @source_file to @destination_file.', NULL, array('@source' => $source, '@destination' => $destination));
  }
}

© 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!SSH.php/function/SSH::copyFileJailed/8.1.x