function backup_migrate_destination_ftp::_delete_file in Backup and Migrate 6.3
Same name and namespace in other branches
- 8.2 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
- 8.3 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
- 6.2 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
- 7.3 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
- 7.2 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
Delete from the ftp destination.
Overrides backup_migrate_destination::_delete_file
File
- includes/
destinations.ftp.inc, line 44 - Functions to handle the FTP backup destination.
Class
- backup_migrate_destination_ftp
- A destination for sending database backups to an FTP server.
Code
function _delete_file($file_id) {
$this
->ftp_object();
drupal_ftp_delete_file($file_id, $this->ftp);
}