You are here

function backup_migrate_destination_s3_compatible::s3_debug in Backup and Migrate S3 7

2 calls to backup_migrate_destination_s3_compatible::s3_debug()
backup_migrate_destination_s3_compatible::edit_form_validate in ./destinations.s3.inc
Validate the edit form for the item.
backup_migrate_destination_s3_compatible::s3_init in ./destinations.s3.inc
S3 Init.

File

./destinations.s3.inc, line 45
Functions to handle the dropbox backup destination.

Class

backup_migrate_destination_s3_compatible
A destination for sending database backups to a Dropbox account.

Code

function s3_debug() {
  $filename = drupal_tempnam('temporary://', 'backup_migrate_s3_');
  $stream = fopen($filename, 'w');
  return LogPlugin::getDebugPlugin(true, $stream);
}