function FileTransferLocal::removeFileJailed
Overrides FileTransfer::removeFileJailed
File
-
includes/
filetransfer/ local.inc, line 50
Class
- FileTransferLocal
- The local connection class for copying files as the httpd user.
Code
protected function removeFileJailed($file) {
if (@(!drupal_unlink($file))) {
throw new FileTransferException('Cannot remove file %file.', NULL, array(
'%file' => $file,
));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.