1 backup.class.inc | public Backup::postBackup(BackupFile &$file) |
Change a file after a backup is complete.
This step is usually used to compress a backup file.
Parameters
BackupFile $file: The file that received the backup. This is explicitly passed by reference to allow it to be reassigned to a new file if needed.
Return value
void:
File
- core/
includes/ backup/ backup.class.inc, line 176 - Contains the Backup base class.
Class
- Backup
- Base class for creating backups.
Code
public function postBackup(BackupFile &$file) {
// No-op.
}