function _backup_migrate_file_dispose_buffer in Backup and Migrate 7.2
Same name and namespace in other branches
- 8.2 includes/files.inc \_backup_migrate_file_dispose_buffer()
- 8.3 includes/files.inc \_backup_migrate_file_dispose_buffer()
- 6.3 includes/files.inc \_backup_migrate_file_dispose_buffer()
- 6.2 includes/files.inc \_backup_migrate_file_dispose_buffer()
- 7.3 includes/files.inc \_backup_migrate_file_dispose_buffer()
An output buffer callback which simply throws away the buffer instead of sending it to the browser.
1 string reference to '_backup_migrate_file_dispose_buffer'
- backup_file::transfer in includes/
files.inc - Transfer file using http to client. Similar to the built in file_transfer, but it calls module_invoke_all('exit') so that temp files can be deleted.
File
- includes/
files.inc, line 113 - General file handling code for Backup and Migrate.
Code
function _backup_migrate_file_dispose_buffer($buffer) {
return "";
}