Files
torebki-fabiola.pl/wp-content/plugins/wpvivid-backuprestore/admin/partials/wpvivid-schedule-page-display.php
2026-03-05 13:07:40 +01:00

204 lines
9.2 KiB
PHP

<?php
function wpvivid_schedule_settings()
{
?>
<tr>
<td class="row-title wpvivid-backup-settings-table tablelistcolumn"><label for="tablecell"><?php _e('Schedule Settings', 'wpvivid-backuprestore'); ?></label></td>
<td class="tablelistcolumn">
<div id="storage-brand-3">
<div>
<div>
<div class="postbox schedule-tab-block">
<label for="wpvivid_schedule_enable">
<input option="schedule" name="enable" type="checkbox" id="wpvivid_schedule_enable" />
<span><?php _e( 'Enable backup schedule', 'wpvivid-backuprestore' ); ?></span>
</label><br>
<label>
<div style="float: left;">
<input type="checkbox" disabled />
<span class="wpvivid-element-space-right" style="color: #ddd;"><?php _e('Enable Incremental Backup', 'wpvivid-backuprestore'); ?></span>
</div>
<div style="float: left; height: 32px; line-height: 32px;">
<span class="wpvivid-feature-pro">
<a href="https://docs.wpvivid.com/wpvivid-backup-pro-incremental-backups.html"><?php _e('Pro feature: learn more', 'wpvivid-backuprestore'); ?></a>
</span>
</div>
<div style="clear: both;"></div>
</label>
<label>
<div style="float: left;">
<input type="checkbox" disabled />
<span class="wpvivid-element-space-right" style="color: #ddd;"><?php _e('Advanced Schedule', 'wpvivid-backuprestore'); ?></span>
</div>
<div style="float: left; height: 32px; line-height: 32px;">
<span class="wpvivid-feature-pro">
<a href="https://docs.wpvivid.com/wpvivid-backup-pro-schedule-overview.html"><?php _e('Pro feature: learn more', 'wpvivid-backuprestore'); ?></a>
</span>
</div>
<div style="clear: both;"></div>
</label>
<div style="clear: both;"></div>
<div>
<?php
$notice='';
$notice= apply_filters('wpvivid_schedule_notice',$notice);
echo $notice;
?>
</div>
</div>
<div class="postbox schedule-tab-block">
<fieldset>
<legend class="screen-reader-text"><span>input type="radio"</span></legend>
<?php
$time='';
$time= apply_filters('wpvivid_schedule_time',$time);
echo $time;
?>
</fieldset>
</div>
</div>
</div>
<div class="postbox schedule-tab-block" id="wpvivid_schedule_backup_type">
<div>
<div>
<fieldset>
<legend class="screen-reader-text"><span>input type="radio"</span></legend>
<?php
$backup_type='';
$backup_type= apply_filters('wpvivid_schedule_backup_type',$backup_type);
echo $backup_type;
?>
</fieldset>
</div>
<div style="clear:both;"></div>
</div>
</div>
<div class="postbox schedule-tab-block" id="wpvivid_schedule_remote_storage">
<div id="wpvivid_schedule_backup_local_remote">
<?php
$html='';
$html= apply_filters('wpvivid_schedule_local_remote',$html);
echo $html;
?>
</div>
<div id="schedule_upload_storage" style="cursor:pointer;" title="<?php _e('Highlighted icon illuminates that you have choosed a remote storage to store backups', 'wpvivid-backuprestore'); ?>">
<?php
$pic='';
$pic= apply_filters('wpvivid_schedule_add_remote_pic',$pic);
echo $pic;
?>
</div>
</div>
<div class="postbox schedule-tab-block">
<div style="float:left; color: #ddd; margin-right: 10px;">
<?php _e('+ Add another schedule', 'wpvivid-backuprestore'); ?>
</div>
<span class="wpvivid-feature-pro">
<a href="https://docs.wpvivid.com/wpvivid-backup-pro-creating-schedules.html"><?php _e('Pro feature: learn more', 'wpvivid-backuprestore'); ?></a>
</span>
</div>
</div>
</td>
</tr>
<script>
<?php
do_action('wpvivid_schedule_do_js');
?>
</script>
<?php
}
function wpvivid_schedule_notice($html)
{
$offset=get_option('gmt_offset');
$time = '00:00:00';
$utime = strtotime($time) + $offset * 60 * 60;
$html='<p>1) '.__('Scheduled job will start at <strong>UTC</strong> time:', 'wpvivid-backuprestore').'&nbsp'.date('H:i:s', $utime).'</p>';
$html.='<p>2) '.__('Being subjected to mechanisms of PHP, a scheduled backup task for your site will be triggered only when the site receives at least a visit at any page.', 'wpvivid-backuprestore').'</p>';
return $html;
}
function wpvivid_schedule_backup_type($html)
{
$html='<label>';
$html.='<input type="radio" option="schedule" name="backup_type" value="files+db"/>';
$html.='<span>'.__('Database + Files (WordPress Files)', 'wpvivid-backuprestore').'</span>';
$html.='</label><br>';
$html.='<label>';
$html.='<input type="radio" option="schedule" name="backup_type" value="files"/>';
$html.='<span>'.__('WordPress Files (Exclude Database)', 'wpvivid-backuprestore').'</span>';
$html.='</label><br>';
$html.='<label>';
$html.='<input type="radio" option="schedule" name="backup_type" value="db"/>';
$html.='<span>'.__('Only Database', 'wpvivid-backuprestore').'</span>';
$html.='</label><br>';
$html.='<label>';
$html.='<div style="float: left;">';
$html.='<input type="radio" disabled />';
$html.='<span class="wpvivid-element-space-right" style="color: #ddd;">'.__('Custom', 'wpvivid-backuprestore').'</span>';
$html.='</div>';
$html.='<div style="float: left; height: 32px; line-height: 32px;">';
$html.='<span class="wpvivid-feature-pro">';
$html.='<a href="https://docs.wpvivid.com/wpvivid-backup-pro-customize-what-to-backup-for-schedule.html" style="text-decoration: none;">'.__('Pro feature: learn more', 'wpvivid-backuprestore').'</a>';
$html.='</span>';
$html.='</div>';
$html.='</label><br>';
return $html;
}
function wpvivid_schedule_do_js()
{
$schedule=WPvivid_Schedule::get_schedule();
if($schedule['enable'] == true)
{
?>
jQuery("#wpvivid_schedule_enable").prop('checked', true);
<?php
if($schedule['backup']['remote'] === 1)
{
$schedule_remote='remote';
}
else{
$schedule_remote='local';
}
}
else{
$schedule['recurrence']='wpvivid_daily';
$schedule['backup']['backup_files']='files+db';
$schedule_remote='local';
}
?>
jQuery("input:radio[value='<?php echo $schedule['recurrence']?>']").prop('checked', true);
jQuery("input:radio[value='<?php echo $schedule['backup']['backup_files']?>']").prop('checked', true);
jQuery("input:radio[name='save_local_remote'][value='remote']").click(function()
{
<?php
$remote_id_array = WPvivid_Setting::get_user_history('remote_selected');
$remote_id = '';
foreach ($remote_id_array as $value)
{
$remote_id = $value;
}
if(empty($remote_id))
{
?>
alert("<?php esc_html_e('There is no default remote storage configured. Please set it up first.', 'wpvivid-backuprestore'); ?>");
jQuery("input:radio[name='save_local_remote'][value='local']").prop('checked', true);
<?php
}
?>
});
<?php
}
add_action('wpvivid_schedule_add_cell','wpvivid_schedule_settings',11);
add_action('wpvivid_schedule_do_js','wpvivid_schedule_do_js',10);
add_filter('wpvivid_schedule_backup_type','wpvivid_schedule_backup_type');
add_filter('wpvivid_schedule_notice','wpvivid_schedule_notice',10);
?>