244 lines
11 KiB
PHP
244 lines
11 KiB
PHP
<?php
|
|
if(!defined('ABSPATH')) {
|
|
die();
|
|
}
|
|
?>
|
|
<h2 class="wpallexport-wp-notices"></h2>
|
|
|
|
<div class="inner-content wpallexport-step-6 wpallexport-wrapper">
|
|
|
|
<div class="wpallexport-header">
|
|
<div class="wpallexport-logo"></div>
|
|
<div class="wpallexport-title">
|
|
<h2><?php esc_html_e('Confirm & Run', 'wp_all_export_plugin'); ?></h2>
|
|
</div>
|
|
<div class="wpallexport-links">
|
|
<a href="http://www.wpallimport.com/support/?utm_source=export-plugin-free&utm_medium=help&utm_campaign=premium-support"
|
|
target="_blank"><?php esc_html_e('Support', 'wp_all_export_plugin'); ?></a> | <a
|
|
href="http://www.wpallimport.com/documentation/?utm_source=export-plugin-free&utm_medium=help&utm_campaign=docs"
|
|
target="_blank"><?php esc_html_e('Documentation', 'wp_all_export_plugin'); ?></a>
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
<div class="processing_step_1">
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="step_description">
|
|
<h2><?php echo wp_kses_post('Export <span id="status">in Progress...</span>', 'wp_all_export_plugin') ?></h2>
|
|
<h3 id="process_notice"><?php esc_html_e('Exporting may take some time. Please do not close your browser or refresh the page until the process is complete.', 'wp_all_export_plugin'); ?></h3>
|
|
</div>
|
|
<div
|
|
class="wpallexport_process_wrapper_<?php echo intval($update_previous->id); ?> wpallexport_process_parent_wrapper">
|
|
<div class="wpallexport_processbar rad14">
|
|
<div class="rad14"></div>
|
|
</div>
|
|
<div class="export_progress">
|
|
<span class="left_progress"><?php esc_html_e('Time Elapsed', 'wp_all_export_plugin'); ?> <span id="then">00:00:00</span></span>
|
|
<span class="center_progress"><span class="percents_count">0</span>%</span>
|
|
<span class="right_progress"><?php esc_html_e('Exported', 'wp_all_export_plugin'); ?> <span
|
|
class="created_count"><?php echo intval($update_previous->exported); ?></span></span>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
if ((XmlExportEngine::get_addons_service()->isWooCommerceAddonActive() || XmlExportEngine::get_addons_service()->isWooCommerceOrderAddonActive() ) && XmlExportWooCommerceOrder::$is_active && $update_previous->options['export_type'] == 'specific') {
|
|
|
|
$exportList = new PMXE_Export_List();
|
|
foreach ($exportList->getBy('parent_id', $update_previous->id)->convertRecords() as $child_export) {
|
|
$is_render_child_progress = true;
|
|
switch ($child_export->export_post_type) {
|
|
case 'product':
|
|
if (!$update_previous->options['order_include_poducts']) $is_render_child_progress = false;
|
|
break;
|
|
case 'shop_coupon':
|
|
if (!$update_previous->options['order_include_coupons']) $is_render_child_progress = false;
|
|
break;
|
|
case 'shop_customer':if (!$update_previous->options['order_include_customers']) $is_render_child_progress = false;
|
|
break;
|
|
}
|
|
|
|
if (!$is_render_child_progress) continue;
|
|
|
|
?>
|
|
<div class="clear"></div>
|
|
<div
|
|
class="wpallexport_process_wrapper_<?php echo intval($child_export->id); ?> wpallexport_process_child_wrapper">
|
|
<div class="wpallexport_processbar rad14">
|
|
<div class="rad14"></div>
|
|
</div>
|
|
<div class="export_progress">
|
|
<span class="left_progress">
|
|
<span class="center_progress">
|
|
<span
|
|
class="percents_count">0</span>%</span> <?php printf(esc_html__("Export %ss", "wp_all_export_plugin"), ucwords(str_replace("_", " ", str_replace("shop", "", esc_html($child_export->export_post_type))))); ?></span>
|
|
<span class="right_progress"><?php esc_html_e('Exported', 'wp_all_export_plugin'); ?> <span
|
|
class="created_count">0</span></span>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
} ?>
|
|
</div>
|
|
|
|
<span id="wpallexport-error-terminated" style="display: none;">
|
|
<div class="wpallexport-content-section" style="display:block; position: relative;">
|
|
<div class="wpallexport-notify-wrapper">
|
|
<div class="found_records terminated" style="background-position: 0 50% !important;">
|
|
<h3><?php esc_html_e('Your server terminated the export process', 'wp_all_export_plugin'); ?></h3>
|
|
<h4 style="width: 78%; line-height: 25px;"><?php esc_html_e("Ask your host to check your server's error log. They will be able to determine why your server is terminating the export process.", "wp_all_export_plugin"); ?></h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</span>
|
|
<?php include ('success_page.php'); ?>
|
|
|
|
|
|
</div>
|
|
|
|
<div class="wpallexport-display-columns wpallexport-margin-top-forty">
|
|
<?php echo apply_filters('wpallexport_footer', ''); ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
(function ($) {
|
|
function toHHMMSS(string)
|
|
{
|
|
var sec_num = parseInt(string, 10); // don't forget the second param
|
|
var hours = Math.floor(sec_num / 3600);
|
|
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
|
|
var seconds = sec_num - (hours * 3600) - (minutes * 60);
|
|
|
|
if (hours < 10) {hours = "0"+hours;}
|
|
if (minutes < 10) {minutes = "0"+minutes;}
|
|
if (seconds < 10) {seconds = "0"+seconds;}
|
|
return hours+':'+minutes+':'+seconds;
|
|
|
|
}
|
|
$(function () {
|
|
|
|
$('#status').each(function () {
|
|
var $this = $(this);
|
|
if ($this.html().match(/\.{3}$/)) {
|
|
var dots = 0;
|
|
var status = $this.html().replace(/\.{3}$/, '');
|
|
var interval;
|
|
interval = setInterval(function () {
|
|
if ($this.html().match(new RegExp(status + '\\.{1,3}$', ''))) {
|
|
$this.html(status + '...'.substr(0, dots++ % 3 + 1));
|
|
} else {
|
|
$('#process_notice').hide();
|
|
clearInterval(interval);
|
|
}
|
|
}, 1000);
|
|
}
|
|
|
|
var then = $('#then');
|
|
var start_date = new Date();
|
|
var current_date = new Date();
|
|
|
|
update = function () {
|
|
current_date = Date.now();
|
|
var duration = Math.floor((current_date - start_date)/1000);
|
|
duration = toHHMMSS(duration);
|
|
if ($('#process_notice').is(':visible')) then.html(duration);
|
|
};
|
|
update();
|
|
setInterval(update, 1000);
|
|
|
|
interval = setInterval(function () {
|
|
|
|
$('div[class^=wpallexport_process_wrapper]').each(function () {
|
|
var percents = $(this).find('.percents_count').html();
|
|
$(this).find('.wpallexport_processbar div').css({'width': ((parseInt(percents) > 100 || percents == undefined) ? 100 : percents) + '%'});
|
|
});
|
|
|
|
}, 1000);
|
|
|
|
$('.wpallexport_processbar').css({'visibility': 'visible'});
|
|
|
|
});
|
|
|
|
var request = {
|
|
action: 'wpallexport',
|
|
security: wp_all_export_security
|
|
};
|
|
|
|
function wp_all_export_process(queue_export) {
|
|
|
|
var $URL = ajaxurl;
|
|
|
|
if (queue_export !== false) {
|
|
$URL += '?id=' + queue_export;
|
|
}
|
|
else {
|
|
if (typeof export_id != "undefined") {
|
|
if ($URL.indexOf("?") == -1) {
|
|
$URL += '?id=' + export_id;
|
|
}
|
|
else {
|
|
$URL += '&id=' + export_id;
|
|
}
|
|
}
|
|
}
|
|
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: $URL,
|
|
data: request,
|
|
success: function (response) {
|
|
|
|
if (response === null) {
|
|
|
|
$('#status').html('Error');
|
|
window.onbeforeunload = false;
|
|
$('#process_notice').after(request.responseText);
|
|
return;
|
|
}
|
|
|
|
var $process_wrapper = $('.wpallexport_process_wrapper_' + response.export_id);
|
|
|
|
$process_wrapper.find('.created_count').html(response.exported);
|
|
$process_wrapper.find('.percents_count').html(response.percentage);
|
|
$process_wrapper.find('.wpallexport_processbar div').css({'width': response.percentage + '%'});
|
|
|
|
if (response.done) {
|
|
if (response.queue_export) {
|
|
wp_all_export_process(response.queue_export);
|
|
}
|
|
else {
|
|
$('#status').html('Complete');
|
|
window.onbeforeunload = false;
|
|
|
|
setTimeout(function () {
|
|
|
|
$('#export_finished').fadeIn();
|
|
|
|
}, 1000);
|
|
}
|
|
}
|
|
else {
|
|
wp_all_export_process(response.export_id);
|
|
}
|
|
},
|
|
error: function (request, status, error) {
|
|
$('#status').html('Error');
|
|
window.onbeforeunload = false;
|
|
$('#process_notice').after(request.responseText);
|
|
$('#wpallexport-error-terminated').show();
|
|
},
|
|
dataType: "json"
|
|
});
|
|
};
|
|
|
|
wp_all_export_process(<?php echo intval($update_previous->id); ?>);
|
|
|
|
window.onbeforeunload = function () {
|
|
return 'WARNING:\nExport process in under way, leaving the page will interrupt\nthe operation and most likely to cause leftovers in posts.';
|
|
};
|
|
|
|
});
|
|
})(jQuery);
|
|
</script>
|