BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
wp-content
/
plugins
/
robin-image-optimizer
/
admin
/
assets
/
js
π€ Upload
π New File
π New Folder
Close
Editing: restore-backup.js
jQuery(function($){ var ajaxUrl = ajaxurl; // Delivery Mode Toggle Handler // Handles the visibility of the delivery mode options based on WebP and AVIF conversion toggles var $webpToggle = $('input[name="wbcr_io_convert_webp_format"]'); var $avifToggle = $('input[name="wbcr_io_convert_avif_format"]'); var $deliveryModeSection = $('.wrio-conversion-delivery-options'); // Function to check if at least one toggle is enabled function updateDeliveryModeVisibility() { var isWebpEnabled = $webpToggle.val() === '1'; var isAvifEnabled = $avifToggle.val() === '1'; // Show delivery mode section only if at least one format is enabled if (isWebpEnabled || isAvifEnabled) { $deliveryModeSection.slideDown(300); } else { $deliveryModeSection.slideUp(300); } } // Attach event listeners to both toggles if ($webpToggle.length && $avifToggle.length && $deliveryModeSection.length) { // Get the button containers for both toggles var $webpButtons = $webpToggle.closest('.factory-checkbox').find('button'); var $avifButtons = $avifToggle.closest('.factory-checkbox').find('button'); // Initial check on page load updateDeliveryModeVisibility(); // Listen for clicks on the factory buttons $webpButtons.on('click', function() { setTimeout(updateDeliveryModeVisibility, 50); }); $avifButtons.on('click', function() { setTimeout(updateDeliveryModeVisibility, 50); }); // Also listen for direct changes on the hidden inputs (fallback) $webpToggle.on('change', function() { updateDeliveryModeVisibility(); }); $avifToggle.on('change', function() { updateDeliveryModeVisibility(); }); } $('#wio-restore-backup-btn').on('click', function() { if ( $('#wio-multisite-mode').length ) { $('#wio-multisite-mode').toggle(); $('#wio-multisite-confirm').attr('data-action', 'restore'); $('#wio-multisite-restore-progress').empty(); return false; } result = confirm( $(this).attr('data-confirm') ); if ( ! result ) { return false; } $(this).hide(); $('#wio-restore-backup-progress').show(); var ai_data = { 'total' : '?', 'action': 'wio_restore_backup', '_wpnonce': $('#wio-iph-nonce').val() }; send_post_data(ai_data); return false; }); $('#wio-clear-backup-btn').on('click', function() { $('#wio-restore-backup-msg').hide(); if ( $('#wio-multisite-mode').length ) { $('#wio-multisite-mode').toggle(); $('#wio-multisite-confirm').attr('data-action', 'clear'); $('#wio-multisite-restore-progress').empty(); return false; } result = confirm( $(this).attr('data-confirm') ); if ( ! result ) { return false; } var data = { 'action': 'wio_clear_backup', '_wpnonce': $('#wio-iph-nonce').val() }; $.post(ajaxUrl, data, function(response) { $('#wio-clear-backup-msg').show(); }); }); $('#wio-multisite-confirm').on('click', function() { var action = $(this).attr('data-action'); // Π΅ΡΠ»ΠΈ Π·Π°ΠΏΡΡΠ΅Π½Π° ΠΎΡΠΈΡΡΠΊΠ° ΡΠ΅Π·Π΅ΡΠ²Π½ΡΡ ΠΊΠΎΠΏΠΈΠΉ if ( action == 'clear' ) { result = confirm( $('#wio-clear-backup-btn').attr('data-confirm') ); // Π±Π΅ΡΡΠΌ ΡΠΎΠΎΠ±ΡΠ΅Π½ΠΈΠ΅ ΠΈΠ· ΠΎΡΠ½ΠΎΠ²Π½ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΈ if ( ! result ) { return false; } var blogs = []; $('.wbcr_io_multisite_blogs:checked').each(function() { blogs.push( $(this).val() ); }); var data = { 'action': 'wio_clear_backup', '_wpnonce': $('#wio-iph-nonce').val(), 'blogs': blogs }; $.post(ajaxUrl, data, function(response) { $('#wio-clear-backup-msg').show(); $('#wio-multisite-mode').toggle(); }); return false; } // Π΅ΡΠ»ΠΈ Π·Π°ΠΏΡΡΠ΅Π½ΠΎ Π²ΠΎΡΡΡΠ°Π½ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΠΈΠ· ΡΠ΅Π·Π΅ΡΠ²Π½ΡΡ ΠΊΠΎΠΏΠΈΠΉ if ( action == 'restore' ) { result = confirm( $('#wio-restore-backup-btn').attr('data-confirm') ); // Π±Π΅ΡΡΠΌ ΡΠΎΠΎΠ±ΡΠ΅Π½ΠΈΠ΅ ΠΈΠ· ΠΎΡΠ½ΠΎΠ²Π½ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΈ if ( ! result ) { return false; } $('#wio-multisite-mode').toggle(); $('#wio-multisite-restore-progress').empty(); $('.wbcr_io_multisite_blogs:checked').each(function() { $('#wio-multisite-restore-progress').append('\ <label>'+$(this).attr('data-name')+'</label>\ <div class="progress">\ <div id="wio-restore-backup-progress-'+$(this).val()+'" class="wio-restore-backup-progressbar progress-bar progress-bar-success" data-id="'+$(this).val()+'" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%">\ </div>\ </div>\ '); }); $('#wio-multisite-restore-progress').show(); if ( ! $('.wio-restore-backup-progressbar').length ) { $('#wio-restore-backup-msg').show(); return false; } var ai_data = { 'total' : '?', 'action': 'wio_restore_backup', '_wpnonce': $('#wio-iph-nonce').val(), 'blog_id': $('.wio-restore-backup-progressbar:eq(0)').attr('data-id') }; send_multisite_post_data(ai_data); return false; } }); $('#wbcr_io_multisite_blog_all').on('change', function() { if ( $(this).attr('checked') == 'checked' ) { $('.wbcr_io_multisite_blogs').attr('checked', true); } else { $('.wbcr_io_multisite_blogs').removeAttr('checked'); } }); $('.wbcr_io_multisite_blogs').on('change', function() { var all_checked = true; $('.wbcr_io_multisite_blogs').each(function() { if ( $(this).attr('checked') != 'checked' ) { all_checked = false; } }); if ( all_checked ) { $('#wbcr_io_multisite_blog_all').attr('checked', true); } else { $('#wbcr_io_multisite_blog_all').removeAttr('checked'); } }); function send_post_data(data){ $.post(ajaxUrl, data, function(response) { if ( ! response.end ) { data.total = response.total; send_post_data(data); $('#wio-restore-backup-progress').find('.progress-bar').css( 'width', response.percent + '%' ); } else { $('#wio-restore-backup-progress').find('.progress-bar').css( 'width', '100%' ); $('#wio-restore-backup-msg').show(); } }); } function send_multisite_post_data(data){ $.post(ajaxUrl, data, function(response) { if ( ! response.end ) { data.total = response.total; send_multisite_post_data(data); $('#wio-restore-backup-progress-' + data.blog_id).css( 'width', response.percent + '%' ); } else { $('#wio-restore-backup-progress-' + data.blog_id).css( 'width', '100%' ).removeClass('wio-restore-backup-progressbar'); if ( $('.wio-restore-backup-progressbar').length ) { var ai_data = { 'total' : '?', 'action': 'wio_restore_backup', '_wpnonce': $('#wio-iph-nonce').val(), 'blog_id': $('.wio-restore-backup-progressbar:eq(0)').attr('data-id') }; send_multisite_post_data(ai_data); } else { $('#wio-restore-backup-msg').show(); } } }); } });
Save
Cancel