Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
backupbuddy
/
destinations
/
site
:
_manage.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // Incoming vars: $destination, $destination_id if ( isset( $destination['disabled'] ) && ( '1' == $destination['disabled'] ) ) { die( __( 'This destination is currently disabled based on its settings. Re-enable it under its Advanced Settings.', 'it-l10n-backupbuddy' ) ); } //pb_backupbuddy::$ui->title( 'Deployment' ); include( pb_backupbuddy::plugin_path() . '/classes/remote_api.php' ); wp_enqueue_script( 'thickbox' ); wp_print_scripts( 'thickbox' ); wp_print_styles( 'thickbox' ); ?> <style> .database_restore_table_select { background: #FFF; padding: 8px; max-height: 200px; overflow: scroll; border: 1px solid #ececec; } .database_restore_table_select::-webkit-scrollbar { -webkit-appearance: none; width: 11px; height: 11px; } .database_restore_table_select::-webkit-scrollbar-thumb { border-radius: 8px; border: 2px solid white; /* should match background, can't be transparent */ background-color: rgba(0, 0, 0, .1); } </style> <?php $deployment = backupbuddy_remote_api::key_to_array( $destination['api_key'] ); require_once( pb_backupbuddy::plugin_path() . '/classes/deploy.php' ); $deploy = new backupbuddy_deploy( $destination, '', $destination_id ); ?> <style> .deploy-push-text { //font-size: 1.4em; padding: 7px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .deploy-pull-text { //font-size: 1.4em; padding: 7px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .deploy-status { display: inline-block; font-size: 1.4em; padding: 14px; color: #FFF; text-align: center; opacity: 0.5; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .deploy-status-up { background: #0074a2; } .deploy-status-down { background: #FF0000; } .deploy-pushpull-wrap { font-size: 1.4em !important; white-space: nowrap; } .deploy-sites-table td { padding: 30px; vertical-align: middle; } .deploy-type-selected { font-weight: bold; background: #efefef; } .tdhead { font-weight: bold; } </style> <script> jQuery(document).ready(function() { jQuery( '#deploy_profile_settings' ).click( function(e){ e.preventDefault(); tb_show( 'BackupBuddy', '<?php echo pb_backupbuddy::ajax_url( 'profile_settings' ); ?>&profile=' + jQuery( '#deploy_profile_selected' ).val() + '&callback_data=&TB_iframe=1&width=640&height=455', null ); }); /* jQuery( '#pb_backupbuddy_deploy_form' ).submit( function(e){ e.preventDefault(); window.location.href = '<?php echo pb_backupbuddy::ajax_url( 'deploy' ); ?>&step=run&deployment=<?php echo $destination_id; ?>&backup_profile=' + jQuery( '#deploy_profile_selected' ).val(); return false; }); */ }); </script> <?php if ( isset( $destination['sha1'] ) ) { $sha1 = $destination['sha1']; } else { $sha1 = false; } $localInfo = backupbuddy_api::getPreDeployInfo( $sha1 ); $status = $deploy->start( $localInfo ); $errorMessage = ''; if ( false === $status ) { $errors = $deploy->getErrors(); if ( count( $errors ) > 0 ) { $errorMessage = 'Errors were encountered: ' . implode( ', ', $errors ) . ' <b><i>If seeking support please provide the details above.</i></b>'; } $siteUp = false; } else { $siteUp = true; } ?> <table class="widefat deploy-sites-table"> <tr> <td> <?php if ( true === $siteUp ) { echo '<span class="deploy-status deploy-status-up">'; _e( 'Site UP', 'it-l10n-backupbuddy' ); } else { echo '<span class="deploy-status deploy-status-down">'; _e( 'Site DOWN', 'it-l10n-backupbuddy' ); } echo '</span>'; ?> </td> <td><?php echo $deploy->_state['destination']['siteurl']; ?></td> <?php if ( true === $siteUp ) { ?> <td class="deploy-pushpull-wrap"> <a href="javascript:void(0);" class="deploy-push-text" onClick="jQuery( '.deploy-type-selected' ).removeClass( 'deploy-type-selected' ); jQuery(this).addClass( 'deploy-type-selected' ); jQuery('#deploy-pull-wrap').hide(); jQuery('#deploy-push-wrap').slideDown(); jQuery('#backupbuddy_deploy_direction').attr('data-direction','push' ); jQuery( '.database_contents_shortcuts-prefix' ).click(); jQuery( '.plugins_shortcuts-none' ).click();">Push to</a> | <a href="javascript:void(0);" class="deploy-pull-text" onClick="jQuery( '.deploy-type-selected' ).removeClass( 'deploy-type-selected' ); jQuery(this).addClass( 'deploy-type-selected' ); jQuery('#deploy-push-wrap').hide(); jQuery('#deploy-pull-wrap').slideDown(); jQuery('#backupbuddy_deploy_direction').attr('data-direction','pull' ); jQuery( '.database_contents_shortcuts-prefix' ).click(); jQuery( '.plugins_shortcuts-none' ).click();">Pull from</a> </td> <?php } ?> </tr> </table> <?php $deployData = $deploy->getState(); $deployDataJson = json_encode( $deployData ); echo '<script>console.log("deployData (len: ' . strlen( $deployDataJson ) . '):"); console.dir(' . $deployDataJson . ');</script>'; if ( '' != $errorMessage ) { pb_backupbuddy::alert( $errorMessage, true ); } $activePluginsA = 'BackupBuddy v' . $localInfo['backupbuddyVersion'] . '<span style="position: relative; top: -0.5em; font-size: 0.7em;">‡</span>'; // Start with BB. Is only in the visual list. Will not be deployed. $i = 0; $x = count( $localInfo['activePlugins'] ); foreach( (array)$localInfo['activePlugins'] as $index => $localPlugin ) { if ( 0 == $i ) { $activePluginsA .= ', '; } $i++; $activePluginsA .= $localPlugin['name'] . ' v' . $localPlugin['version']; if ( $x > $i ) { $activePluginsA .= ', '; } /* if ( false !== strpos( $localPlugin['name'], 'BackupBuddy' ) ) { echo 'bbmoose'; unset( $localInfo['activePlugins'][ $index ] ); } */ } $activePluginsB = 'BackupBuddy v' . $deployData['remoteInfo']['backupbuddyVersion'] . '<span style="position: relative; top: -0.5em; font-size: 0.7em;">‡</span>'; // Start with BB. Is only in the visual list. Will not be deployed. $i = 0; $x = count( $deployData['remoteInfo']['activePlugins'] ); foreach( (array)$deployData['remoteInfo']['activePlugins'] as $index => $remotePlugin ) { if ( 0 == $i ) { $activePluginsB .= ', '; } $i++; $activePluginsB .= $remotePlugin['name'] . ' v' . $remotePlugin['version']; if ( $x > $i ) { $activePluginsB .= ', '; } /* if ( false !== strpos( $localPlugin['name'], 'BackupBuddy' ) ) { unset( $localInfo['activePlugins'][ $index ] ); } */ } ?> <br><br> <span id="backupbuddy_deploy_direction" data-direction=""></span> <span id="backupbuddy_deploy_prefixA" data-prefix="<?php echo $localInfo['dbPrefix']; ?>"></span> <span id="backupbuddy_deploy_prefixB" data-prefix="<?php echo $deployData['remoteInfo']['dbPrefix']; ?>"></span> <div id="deploy-push-wrap" style="display: none;"> <?php require_once( '_push.php' ); ?> </div> <div id="deploy-pull-wrap" style="display: none;"> <?php require_once( '_pull.php' ); ?> </div> <?php // Handles thickbox auto-resizing. Keep at bottom of page to avoid issues. if ( !wp_script_is( 'media-upload' ) ) { wp_enqueue_script( 'media-upload' ); wp_print_scripts( 'media-upload' ); }