1 backup.class.inc | public Backup::postRestore(BackupFile &$file) |
Change a file after restoration.
This step is usually used to delete up the decompressed backup file.
Parameters
BackupFile $file: The file containing the backup that was restored. 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 217 - Contains the Backup base class.
Class
- Backup
- Base class for creating backups.
Code
public function postRestore(BackupFile &$file) {
// No-op.
}