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
/
classes
/
api
:
_setLiveStatus.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // Incoming vars: $pause_continuous, $pause_periodic, $start_run. require_once( pb_backupbuddy::plugin_path() . '/destinations/live/live.php' ); if ( false === ( $destination_id = backupbuddy_live::getLiveID() ) ) { // $destination_id used by _stats.php. return false; } $saving = false; /***** BEGIN CONTINOUS *****/ if ( false === $pause_continuous ) { // Unpause. pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_continuous'] = '0'; $saving = true; } elseif ( true === $pause_continuous ) { // Pause. pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_continuous'] = '1'; $saving = true; } /***** END CONTINOUS *****/ /***** BEGIN PERIODIC *****/ if ( false === $pause_periodic ) { // Unpause. $prior_periodic_status = pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_periodic']; pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_periodic'] = '0'; if ( '1' == $prior_periodic_status ) { // Was paused, now unpaused, so check if we need to run now. if ( true === $start_run ) { pb_backupbuddy::save(); // Must save prior to spawning. $cronArgs = array(); $schedule_result = backupbuddy_core::schedule_single_event( time(), 'live_periodic', $cronArgs ); if ( true === $schedule_result ) { pb_backupbuddy::status( 'details', 'Next Live Periodic chunk step cron event scheduled.' ); } else { pb_backupbuddy::status( 'error', 'Next Live Periodic chunk step cron event FAILED to be scheduled.' ); } if ( '1' != pb_backupbuddy::$options['skip_spawn_cron_call'] ) { pb_backupbuddy::status( 'details', 'Spawning cron now.' ); update_option( '_transient_doing_cron', 0 ); // Prevent cron-blocking for next item. spawn_cron( time() + 150 ); // Adds > 60 seconds to get around once per minute cron running limit. } } } $saving = true; } elseif ( true === $pause_periodic ) { // Pause. pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_periodic'] = '1'; $saving = true; } /***** END PERIODIC *****/ // Save settings. if ( true === $saving ) { pb_backupbuddy::save(); } // Return status stats. if ( '1' == pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_continuous'] ) { $continuous_status = '0'; } else { $continuous_status = '1'; } if ( '1' == pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_periodic'] ) { $periodic_status = '0'; } else { $periodic_status = '1'; } return array( 'continuous_status' => $continuous_status, 'periodic_status' => $periodic_status );