function FileTransferSSH::removeDirectoryJailed

Overrides FileTransfer::removeDirectoryJailed

File

includes/filetransfer/ssh.inc, line 52

Class

FileTransferSSH
The SSH connection class for the update module.

Code

protected function removeDirectoryJailed($directory) {
    if (@(!ssh2_exec($this->connection, 'rm -Rf ' . escapeshellarg($directory)))) {
        throw new FileTransferException('Cannot remove @directory.', NULL, array(
            '@directory' => $directory,
        ));
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.