protected function FTPExtension::removeFileJailed

protected FTPExtension::removeFileJailed($destination)

Removes a file.

Parameters

string $destination: The destination file to be removed.

Overrides FileTransfer::removeFileJailed

File

core/lib/Drupal/Core/FileTransfer/FTPExtension.php, line 75

Class

FTPExtension
Defines a file transfer class using the PHP FTP extension.

Namespace

Drupal\Core\FileTransfer

Code

protected function removeFileJailed($destination) {
  if (!ftp_delete($this->connection, $destination)) {
    throw new FileTransferException("Unable to remove to file @file", NULL, array('@file' => $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!FTPExtension.php/function/FTPExtension::removeFileJailed/8.1.x