/var/www/(Del)hsihk.com/wp-content/plugins/backupbuddy/views/scheduling.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php



/*
echo '<pre>';
print_r( backupbuddy_api::getSchedules() );
echo '</pre>';
*/

wp_enqueue_script'thickbox' );
wp_print_scripts'thickbox' );
wp_print_styles'thickbox' );
?>
<script type="text/javascript">
    function pb_backupbuddy_selectdestination( destination_id, destination_title, callback_data, delete_after, mode ) {
        jQuery( '#pb_backupbuddy_remotedestinations_list' ).append( '<li id="pb_remotedestination_' + destination_id + '">' + destination_title + ' <img class="pb_remotedestionation_delete" src="<?php echo pb_backupbuddy::plugin_url(); ?>/images/redminus.png" style="vertical-align: -3px; cursor: pointer;" title="<?php _e'Remove remote destination from this schedule.''it-l10n-backupbuddy' ); ?>" /></li>' + "\n" );
        jQuery( '#pb_backupbuddy_deleteafter' ).slideDown();
    }
    
    
    jQuery(document).ready(function() {
        /* Generate the remote destination list upon submission. */
        jQuery('#pb_backupbuddy_scheduling_form').submit(function(e) {
            remote_destinations = '';
            jQuery( '#pb_backupbuddy_remotedestinations_list' ).children('li').each(function () {
                remote_destinations = jQuery(this).attr( 'id' ).substr( 21 ) + '|' + remote_destinations ;
            });
            jQuery( '#pb_backupbuddy_remote_destinations' ).val( remote_destinations );
        });
        
        
        /* Allow deleting of remote destinations from the list. */
        jQuery(document).on( 'click', '.pb_remotedestionation_delete', function(e) {
            jQuery( '#pb_remotedestination_' + jQuery(this).parent( 'li' ).attr( 'id' ).substr( 21 ) ).remove();
        });
        
        
        jQuery('.pluginbuddy_pop').click(function(e) {
            showpopup('#'+jQuery(this).attr('href'),'',e);
            return false;
        });
    });
</script>




<?php
pb_backupbuddy
::$ui->title__'BackupBuddy Schedules''it-l10n-backupbuddy' ) );
pb_backupbuddy::disalert'schedule_limit_reminder''<span class="pb_label">Tip</span> ' __'Keep old backups from piling up by configuring "Local Archive Storage Limits" on the Settings page.''it-l10n-backupbuddy' ) );



if ( ( 
count$schedules ) > ) && ( pb_backupbuddy::_GET'edit' ) == '' ) ) {
    
pb_backupbuddy::$ui->list_table(
        
$schedules,
        array(
            
'action'        =>        pb_backupbuddy::page_url(),
            
'columns'        =>        array(
                                        
__'Title''it-l10n-backupbuddy' ),
                                        
__'Profile''it-l10n-backupbuddy' ),
                                        
__'Interval''it-l10n-backupbuddy' ),
                                        
__'Destinations''it-l10n-backupbuddy' ),
                                        
__'Run Time''it-l10n-backupbuddy' ) . pb_backupbuddy::tip__'First run indicates the first time thie schedule ran or will run.  Last run time is the last time that this scheduled backup started. This does not imply that the backup completed, only that it began at this time. The last run time is reset if the schedule is edited. Next run indicates when it is next scheduled to run. If there is no server activity during this time the schedule will be delayed.''it-l10n-backupbuddy' ), ''false ),
                                        
__'Status''it-l10n-backupbuddy' ),
                                    ),
            
'hover_actions'    =>        array( 'edit' => 'Edit Schedule''run' => 'Run Now' ),
            
'bulk_actions'    =>        array( 'delete_schedule' => 'Delete' ),
            
'css'            =>        'width: 100%;',
        )
    );
    echo 
'<br>';
}


if ( 
pb_backupbuddy::_GET'edit' ) == '' ) {
    echo 
'<h3>' __'Add New Schedule''it-l10n-backupbuddy' ) . '</h3>';
} else {
    echo 
'<h3>' __'Edit Schedule''it-l10n-backupbuddy' ) . '</h3>';
}
$schedule_form->display_settings'+ ' $mode_title );
if ( 
pb_backupbuddy::_GET'edit' ) != '' ) {
    echo 
'<br><br><a href="' pb_backupbuddy::page_url() . '&tab=1#database_replace" class="button secondary-button">&larr; ' .  __'back''it-l10n-backupbuddy' ) . '</a>';
}
echo 
'<br><br>';
?>



<br /><br />
<div class="description">
    <b>Note</b>: Due to the way schedules are triggered in WordPress your site must be accessed (frontend or admin area) for scheduled backups to occur.
    WordPress scheduled events ("crons") may be viewed or run manually for testing from the <a href="?page=pb_backupbuddy_server_tools">Server Tools page</a>.
    A <a href="https://www.google.com/search?q=free+website+uptime&oq=free+website+uptime" target="_new">free website uptime</a> service can be used to automatically access your site regularly to help trigger scheduled actions ("crons") in cases of low site activity, with the added perk of keeping track of your site uptime.
</div>
<br /><br />



<?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' );
}
?>