HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpicare/wp-content/plugins/wp-rocket/assets/js/wpr-admin-common.js
jQuery( document ).ready( function( $ ){
var sent = false;
	$( '.rocket-dismiss' ).on( 'click', function( e ) {
		e.preventDefault();
		var url = $( this ).attr( 'href' ).replace( 'admin-post', 'admin-ajax' );
		$.get( url ).done( $( this ).closest( '.notice' ).hide( 'slow' ) );
	});

	$( '#deactivate' ).click( function() {
		$( '#export_settings' ).prop( 'checked', false );
		$( '#export_settings' ).hide();
		$( 'label[for=export_settings]' ).hide();
	});

	$( '#safe_mode' ).click( function() {
		$( '#export_settings' ).show();
		$( 'label[for=export_settings]' ).show();
		$( '#export_settings' ).prop( 'checked', true );
	});

	$( '#wpr-deactivation-intent-form' ).submit(function (e) {
		const checked = $( '#export_settings' ).prop('checked');
		if(! checked || sent) {
			return true;
		}

		e.preventDefault();
		$.ajax( {
			url: rocket_option_export.rest_url_option_export,
			method: 'GET',
			success: function( data, textStatus, xhr ) {
				const disposition = xhr.getResponseHeader('content-disposition');

				const filenames = disposition.match('filename="([^"]+)"');

				if(! filenames.length) {
					return;
				}

				const filename = filenames.pop();

				const url = URL.createObjectURL( new Blob( [ JSON.stringify(data, null, 2) ], {
					type: "octet/stream"
				}));

				var a = document.createElement("a");
				document.body.appendChild(a);
				a.style = "display: none";
				a.href = url;
				a.download = filename;
				a.click();
				window.URL.revokeObjectURL(url);
			},
			complete: function () {
				sent = true;
				$( '#wpr-deactivation-intent-form' ).submit();
			}
		} );

		return true;
	});
} );