You are here

function backup_migrate_destination_ftp::_delete_file in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
  2. 6.3 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
  3. 6.2 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
  4. 7.3 includes/destinations.ftp.inc \backup_migrate_destination_ftp::_delete_file()
  5. 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 45
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);
}