You are here

function backup_migrate_filter::backup in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.2 includes/filters.inc \backup_migrate_filter::backup()
  2. 8.3 includes/filters.inc \backup_migrate_filter::backup()
  3. 6.2 includes/filters.inc \backup_migrate_filter::backup()
  4. 7.3 includes/filters.inc \backup_migrate_filter::backup()
  5. 7.2 includes/filters.inc \backup_migrate_filter::backup()

This function is called on a backup file after the backup has been completed.

3 methods override backup_migrate_filter::backup()
backup_migrate_filter_backup_restore::backup in includes/filters.backup_restore.inc
Backup the data from the source specified in the settings.
backup_migrate_filter_compression::backup in includes/filters.compression.inc
This function is called on a backup file after the backup has been completed.
backup_migrate_filter_encryption::backup in includes/filters.encryption.inc
This function is called on a backup file after the backup has been completed.

File

includes/filters.inc, line 293
All of the filter handling code needed for Backup and Migrate.

Class

backup_migrate_filter
A base class for basing filters on.

Code

function backup($file, $settings) {
  return $file;
}