Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
backupbuddy
/
destinations
/
s33
/
Editing: _manage.php
<?php /** * Manage Amazon S3v3 Destination * * Incoming variables: * $destination * * @package BackupBuddy * @author Dustin Bolton 2015. */ if ( isset( $destination['disabled'] ) && '1' == $destination['disabled'] ) { die( __( '<span class="description">This destination is currently disabled based on its settings. Re-enable it under its Advanced Settings.</span>', 'it-l10n-backupbuddy' ) ); } $destination_id = pb_backupbuddy::_GET( 'destination_id' ); // Welcome text. $site_only = 'true' != pb_backupbuddy::_GET( 'listAll' ); $action = $site_only ? 'true' : 'false'; $text = $site_only ? __( 'List all Backups from all sites', 'it-l10n-backupbuddy' ) : __( 'Only list this site\'s Backups', 'it-l10n-backupbuddy' ); $swap_list = sprintf( '<a href="%s&destination_id=%s&listAll=%s" style="text-decoration: none;">%s</a>', esc_attr( pb_backupbuddy::ajax_url( 'remoteClient' ) ), esc_attr( htmlentities( $destination_id ) ), esc_attr( $action ), esc_html( $text ) ); printf( '<center>%s</center>', wp_kses_post( $swap_list ) ); // Load required files. require_once pb_backupbuddy::plugin_path() . '/destinations/s33/init.php'; $settings = array(); // Settings. if ( is_numeric( $destination_id ) ) { if ( empty( pb_backupbuddy::$options['remote_destinations'][ (int) $destination_id ] ) ) { die( 'Error #9828332: Destination not found.' ); } $settings = &pb_backupbuddy::$options['remote_destinations'][ (int) $destination_id ]; $settings = pb_backupbuddy_destination_s33::_formatSettings( $settings ); } // Handle deletion. if ( 'delete_backup' === pb_backupbuddy::_POST( 'bulk_action' ) ) { pb_backupbuddy::verify_nonce(); $delete_files = (array) pb_backupbuddy::_POST( 'items' ); if ( ! class_exists( 'pb_backupbuddy_destinations' ) ) { require_once pb_backupbuddy::plugin_path() . '/destinations/bootstrap.php'; } if ( true === pb_backupbuddy_destinations::delete( $settings, $delete_files ) ) { pb_backupbuddy::alert( 'Deleted ' . implode( ', ', $delete_files ) . '.' ); } else { pb_backupbuddy::alert( 'Failed to delete one or more files.' ); } echo '<br>'; } // end deletion. // Handle copying files to local. if ( pb_backupbuddy::_GET( 'cpy' ) ) { pb_backupbuddy::alert( 'The remote file is now being copied to your local backups. If the transfer gets interrupted, click the "Refresh" icon after the transfer is complete to try again.' ); echo '<br>'; pb_backupbuddy::status( 'details', 'Scheduling Cron for creating S3 copy.' ); backupbuddy_core::trigger_async_event( 'process_remote_copy', array( 's33', pb_backupbuddy::_GET( 'cpy' ), $settings ) ); backupbuddy_core::maybe_spawn_cron(); } // end copying to local. // Handle pagination. $marker = null; if ( pb_backupbuddy::_GET( 'marker' ) ) { // Jump to specific spot. $marker = base64_decode( urldecode( pb_backupbuddy::_GET( 'marker' ) ) ); } // Get list of files for this site. $remote_path = $site_only ? $settings['directory'] . 'backup-' . backupbuddy_core::backup_prefix() : $settings['directory']; // Find backups in directory. backupbuddy_backups()->set_destination_id( $destination_id ); $settings['remote_path'] = $remote_path; $settings['marker'] = $marker; $backups = pb_backupbuddy_destinations::listFiles( $settings ); if ( ! is_array( $backups ) ) { die( 'Error listing files: `' . esc_html( $backups ) . '`.' ); } backupbuddy_backups()->show_cleanup(); // Handle pagination. $marker = end( $backups ); reset( $backups ); if ( isset( $marker[0][0] ) ) { $marker = base64_encode( $marker[0][0] ); } else { $marker = ''; } $url_prefix = pb_backupbuddy::ajax_url( 'remoteClient' ) . '&destination_id=' . htmlentities( $destination_id ); $backup_count = count( $backups ); ?> <center> <b><?php echo esc_html( number_format_i18n( $backup_count ) ); ?> <?php echo esc_html( _n( 'file', 'files', $backup_count, 'it-l10n-backupbuddy' ) ); ?> displayed.</b><br><br> <?php if ( pb_backupbuddy::_GET( 'marker' ) ) { ?> <a href="<?php echo esc_attr( $url_prefix ); ?>&marker=<?php echo rawurlencode( pb_backupbuddy::_GET( 'back' ) ); ?>" class="button button-secondary button-tertiary">Previous Page</a> <?php } ?> <?php if ( $backup_count >= $settings['max_filelist_keys'] ) { ?> <a href="<?php echo esc_attr( $url_prefix ); ?>&marker=<?php echo esc_attr( rawurlencode( $marker ) ); ?>&back=<?php echo esc_attr( rawurlencode( pb_backupbuddy::_GET( 'marker' ) ) ); ?>" class="button button-secondary button-tertiary">Next Page</a> <?php } ?> </center> <?php $no_backups = ''; if ( 0 === $backup_count ) { $no_backups = '<b>'; if ( $site_only ) { $no_backups .= esc_html__( 'You have not completed sending any backups to this S3v3 destination (bucket + directory) for this site yet.', 'it-l10n-backupbuddy' ); } else { $no_backups .= esc_html__( 'You have not completed sending any backups to this S3v3 destination (bucket + directory).', 'it-l10n-backupbuddy' ); } $no_backups .= '</b>'; } backupbuddy_backups()->table( 'default', $backups, array( 'action' => $url_prefix . '&remote_path=' . htmlentities( pb_backupbuddy::_GET( 'remote_path' ) ), 'destination_id' => $destination_id, 'class' => 'minimal', 'no-backups' => $no_backups, ) ); // Display troubleshooting subscriber key. echo '<br style="clear: both;">'; return;
Save
Cancel