HEX
Server: LiteSpeed
System: Linux s166.bitcommand.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: h340499 (1922)
PHP: 8.2.16
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/h340499/public_html/wp-content/plugins/duplicator-pro/assets/js/duplicator/dup.ui.php
<?php

use Duplicator\Libs\WpUtils\WpDbUtils;

?>
<script>
    /*! ============================================================================
     *  UI NAMESPACE: All methods at the top of the Duplicator Namespace
     *  =========================================================================== */
    (function($) {
        /**
         * Indicates if we have any form changes.
         * Primarily used to prevent the user from navigating away from a page with unsaved changes.
         * @type {boolean}
         */
        DupPro.UI.hasUnsavedChanges = false;

        /*  Stores the state of a view into the database  */
        DupPro.UI.SaveViewStateByPost = function(key, value) {
            if (key != undefined && value != undefined) {
                jQuery.ajax({
                    type: "POST",
                    url: ajaxurl,
                    dataType: "json",
                    data: {
                        action: 'duplicator_view_state_update',
                        key: key,
                        value: value,
                        nonce: '<?php echo esc_js(wp_create_nonce('duplicator_view_state_update')); ?>'
                    },
                    success: function(data) {},
                    error: function(data) {}
                });
            }
        }

        DupPro.UI.SaveMulViewStatesByPost = function(states) {
            jQuery.ajax({
                type: "POST",
                url: ajaxurl,
                dataType: "json",
                data: {
                    action: 'duplicator_view_state_update',
                    states: states,
                    nonce: '<?php echo esc_js(wp_create_nonce('duplicator_view_state_update')); ?>'
                },
                success: function(data) {},
                error: function(data) {}
            });
        }

        DupPro.UI.SetScanMode = function() {
            var scanMode = jQuery('#scan-mode').val();

            if (scanMode == <?php echo (int) WpDbUtils::PHPDUMP_MODE_MULTI; ?>) {
                jQuery('#scan-multithread-size').show();
                jQuery('#scan-chunk-size-label').show();
            } else {
                jQuery('#scan-multithread-size').hide();
                jQuery('#scan-chunk-size-label').hide();
            }

        }

        DupPro.UI.IsSaveViewState = true;
        /*  Toggle MetaBoxes */
        DupPro.UI.ToggleMetaBox = function() {
            var $title = jQuery(this);
            var $panel = $title.parent().find('.dup-box-panel');
            var $arrowParent = $title.parent().find('.dup-box-arrow');
            var $arrow = $title.parent().find('.dup-box-arrow i');
            var key = $panel.attr('id');
            var value = $panel.is(":visible") ? 0 : 1;

            if (DupPro.UI.IsSaveViewState) {
                DupPro.UI.SaveViewStateByPost(key, value);
            }

            if (value) {
                $panel.removeClass('no-display');
                $panel.show();
                $arrowParent.attr("aria-expanded", true);
                $arrow.removeClass().addClass('fa fa-caret-up');
            } else {
                $panel.hide();
                $arrowParent.attr("aria-expanded", false);
                $arrow.removeClass().addClass('fa fa-caret-down');
            }

            return false;
        }

        DupPro.UI.ClearTraceLog = function(reload) {
            var reload = reload || 0;
            jQuery.ajax({
                type: "POST",
                url: ajaxurl,
                data: {
                    action: 'duplicator_pro_delete_trace_log',
                    nonce: '<?php echo esc_js(wp_create_nonce('duplicator_pro_delete_trace_log')); ?>'
                },
                success: function(respData) {
                    if (reload && respData.success) {
                        window.location.reload();
                    }
                },
                error: function(data) {}
            });
            return false;
        }

        /* Clock generator, used to show an active clock.
         * Intended use is to be called once per page load
         * such as:
         *      <div id="dpro-clock-container"></div>
         *      DupPro.UI.Clock(DupPro._WordPressInitTime); */
        DupPro.UI.Clock = function() {
            var timeDiff;
            var timeout;

            function addZ(n) {
                return (n < 10 ? '0' : '') + n;
            }

            function formatTime(d) {
                return addZ(d.getHours()) + ':' + addZ(d.getMinutes()) + ':' + addZ(d.getSeconds());
            }

            return function(s) {

                var now = new Date();
                var then;
                // Set lag to just after next full second
                var lag = 1015 - now.getMilliseconds();

                // Get the time difference when first run
                if (s) {
                    s = s.split(':');
                    then = new Date(now);
                    then.setHours(+s[0], +s[1], +s[2], 0);
                    timeDiff = now - then;
                }

                now = new Date(now - timeDiff);
                jQuery('#dpro-clock-container').html(formatTime(now));
                timeout = setTimeout(DupPro.UI.Clock, lag);
            };
        }();

        /*  Runs callback function when form values change */
        DupPro.UI.formOnChangeValues = function(form, callback) {
            let previousValues = form.serialize();

            $('form :input').on('change input', function() {
                if (previousValues !== form.serialize()) {
                    previousValues = form.serialize();
                    callback();
                }
            });

            $('.dup-pseudo-checkbox, #dbnone, #dball').on('click', function() {
                // Since the pseudo checkbox is not a form input,
                // assume the state is changed on click
                callback();
            });
        };
    })(jQuery);
</script>