PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
wp-all-export-pro
/
actions
<?php function pmxe_wp_ajax_scheduling_dialog_content() { if (!check_ajax_referer('wp_all_export_secure', 'security', false)) { exit(json_encode(array('html' => esc_html__('Security check', 'wp_all_export_plugin')))); } if (!current_user_can(PMXE_Plugin::$capabilities)) { exit(json_encode(array('html' => esc_html__('Security check', 'wp_all_export_plugin')))); } $export_id = $_POST['id']; $export = new PMXE_Export_Record(); $export->getById($export_id); if (!$export) { throw new Exception('Export not found'); } $schedulingExportOptions = $export->options; $hasActiveLicense = PMXE_Plugin::hasActiveSchedulingLicense(); $options = \PMXE_Plugin::getInstance()->getOption(); $scheduling = \Wpae\Scheduling\Scheduling::create(); $cron_job_key = PMXE_Plugin::getInstance()->getOption('cron_job_key'); if (!isset($schedulingExportOptions['scheduling_enable'])) { $schedulingExportOptions['scheduling_enable'] = 0; } if (!isset($schedulingExportOptions['scheduling_timezone'])) { $schedulingExportOptions['scheduling_timezone'] = 'UTC'; } if (!isset($schedulingExportOptions['scheduling_run_on'])) { $schedulingExportOptions['scheduling_run_on'] = 'weekly'; } if (!isset($schedulingExportOptions['scheduling_times'])) { $schedulingExportOptions['scheduling_times'] = array(); } ?> <style type="text/css"> .days-of-week { margin-left: 5px; } .days-of-week li { border: 1px solid #ccc; border-radius: 5px; padding: 10px 30px;; display: inline-block; margin-right: 10px; cursor: pointer; font-weight: bold; width: 26px; text-align: center; height: 16px; color: rgb(68, 68, 68); float: left; } .days-of-week li.selected { color: #fff; background-color: #425F9A; border-color: #585858; } #weekly, #monthly { height: 20px; margin-left: 5px; margin-top: 10px; } .timepicker { padding: 10px; border-radius: 5px; margin-right: 10px; } #times { margin-top: 5px; width: 766px; } #times input { margin-top: 10px; margin-left: 0; float: left; width: 88px; } #times input.error { border-color: red !important; } .subscribe { } .subscribe .button-container { float: left; width: 150px; } .subscribe .text-container { float: left; width: auto; } .subscribe .text-container p { margin: 0; color: #425F9A; font-size: 14px; font-weight: bold; } .subscribe .text-container p a { color: #425F9A; text-decoration: underline; } .save { padding-left: 5px; padding-top: 5px; width: auto; } .ui-timepicker-wrapper { width: 86px; } .easing-spinner { width: 30px; height: 30px; position: relative; display: inline-block; margin-top: 7px; margin-left: -25px; float: left; } .double-bounce1, .double-bounce2 { width: 100%; height: 100%; border-radius: 50%; background-color: #fff; opacity: 0.6; position: absolute; top: 0; left: 0; -webkit-animation: sk-bounce 2.0s infinite ease-in-out; animation: sk-bounce 2.0s infinite ease-in-out; } .double-bounce2 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; } .wpae-save-button svg { margin-top: 7px; margin-left: -215px; display: inline-block; position: relative; } @-webkit-keyframes sk-bounce { 0%, 100% { -webkit-transform: scale(0.0) } 50% { -webkit-transform: scale(1.0) } } @keyframes sk-bounce { 0%, 100% { transform: scale(0.0); -webkit-transform: scale(0.0); } 50% { transform: scale(1.0); -webkit-transform: scale(1.0); } } #add-subscription-field { position: absolute; left: -152px; top: -1px; height: 46px; border-radius: 5px; font-size: 17px; padding-left: 10px; display: none; width: 140px; } #find-subscription-link { position: absolute; left: 133px; top: 14px; height: 30px; width: 300px; display: none; } #find-subscription-link a { display: block; width: 100%; height: 46px; white-space: nowrap; } #weekly li.error, #monthly li.error { border-color: red; } .chosen-single { margin-bottom: 0 !important; } .chosen-container.chosen-with-drop .chosen-drop { margin-top: -3px; } .ui-timepicker-wrapper { z-index: 999999; } .wpallexport-scheduling-dialog h4 { font-size: 14px; margin-bottom: 5px; color: #40acad; text-decoration: none; margin-left: 0; } .manual-scheduling { margin-left: 26px; } .chosen-container .chosen-results { margin: 0 4px 4px 0 !important; } .unable-to-connect { color: #f2b03d; } </style> <script type="text/javascript"> (function ($) { $(function () { var hasActiveLicense = <?php echo $hasActiveLicense ? 'true' : 'false'; ?>; $(document).ready(function () { function openSchedulingAccordeonIfClosed() { if ($('.wpallexport-file-options').hasClass('closed')) { // Open accordion $('#scheduling-title').trigger('click'); } } updateSaveButtonState = function() { var howToRun = $('input[name="scheduling_enable"]:checked').val(); if(parseInt(howToRun) === 1 && !hasActiveLicense) { $('.save-changes').addClass('disabled'); } else { $('.save-changes').removeClass('disabled'); } }; updateSaveButtonState(); $('input[name="scheduling_enable"]').on('change', function(){ updateSaveButtonState(); }); window.pmxeValidateSchedulingForm = function () { var schedulingEnabled = $('input[name="scheduling_enable"]:checked').val() == 1; if (!schedulingEnabled) { return { isValid: true }; } var runOn = $('input[name="scheduling_run_on"]:checked').val(); // Validate weekdays if (runOn == 'weekly') { var weeklyDays = $('#weekly_days').val(); if (weeklyDays == '') { $('#weekly li').addClass('error'); return { isValid: false, message: 'Please select at least a day on which the export should run' } } } else if (runOn == 'monthly') { var monthlyDays = $('#monthly_days').val(); if (monthlyDays == '') { $('#monthly li').addClass('error'); return { isValid: false, message: 'Please select at least a day on which the export should run' } } } // Validate times var timeValid = true; var timeMessage = 'Please select at least a time for the export to run'; var timeInputs = $('.timepicker'); var timesHasValues = false; timeInputs.each(function (key, $elem) { if ($(this).val() !== '') { timesHasValues = true; } if (!$(this).val().match(/^(0?[1-9]|1[012])(:[0-5]\d)[APap][mM]$/) && $(this).val() != '') { $(this).addClass('error'); timeValid = false; } else { $(this).removeClass('error'); } }); if (!timesHasValues) { timeValid = false; $('.timepicker').addClass('error'); } if (!timeValid) { return { isValid: false, message: timeMessage }; } return { isValid: true }; }; $('#weekly li').on('click', function () { $('#weekly li').removeClass('error'); if ($(this).hasClass('selected')) { $(this).removeClass('selected'); } else { $(this).addClass('selected'); } $('#weekly_days').val(''); $('#weekly li.selected').each(function () { var val = $(this).data('day'); $('#weekly_days').val($('#weekly_days').val() + val + ','); }); $('#weekly_days').val($('#weekly_days').val().slice(0, -1)); }); $('#monthly li').on('click', function () { $('#monthly li').removeClass('error'); $(this).parent().parent().find('.days-of-week li').removeClass('selected'); $(this).addClass('selected'); $('#monthly_days').val($(this).data('day')); }); $('input[name="scheduling_run_on"]').on('change', function () { var val = $('input[name="scheduling_run_on"]:checked').val(); if (val == "weekly") { $('#weekly').slideDown({ queue: false }); $('#monthly').slideUp({ queue: false }); } else if (val == "monthly") { $('#weekly').slideUp({ queue: false }); $('#monthly').slideDown({ queue: false }); } }); $('.timepicker').timepicker(); var selectedTimes = []; var onTimeSelected = function () { selectedTimes.push([$(this).val(), $(this).val() + 1]); var isLastChild = $(this).is(':last-child'); if (isLastChild) { $(this).parent().append('<input class="timepicker" name="scheduling_times[]" style="display: none;" type="text" />'); $('.timepicker:last-child').timepicker({ 'disableTimeRanges': selectedTimes }); $('.timepicker:last-child').fadeIn('fast'); $('.timepicker').on('changeTime', onTimeSelected); } }; $('.timepicker').on('changeTime', onTimeSelected); $('#timezone').chosen({width: '284px'}); $('.wpae-save-button').on('click', function (e) { var initialValue = $(this).find('.save-text').html(); var schedulingEnable = $('input[name="scheduling_enable"]:checked').val(); console.log(schedulingEnable); if (!hasActiveLicense) { if (!$(this).data('iunderstand') && schedulingEnable) { $('#no-subscription').slideDown(); $(this).find('.save-text').html('<?php esc_html_e('I Understand');?>'); $(this).find('.save-text').css('left', '100px'); $(this).data('iunderstand', 1); openSchedulingAccordeonIfClosed(); e.preventDefault(); return; } else { var submitEvent = $.Event('wpae-scheduling-options-form:submit'); $(document).trigger(submitEvent); return; } } // Don't process scheduling if (!schedulingEnable) { var submitEvent = $.Event('wpae-scheduling-options-form:submit'); $(document).trigger(submitEvent); return; } var validationResponse = pmxeValidateSchedulingForm(); if (!validationResponse.isValid) { openSchedulingAccordeonIfClosed(); e.preventDefault(); return false; } $(this).find('.easing-spinner').toggle(); var $button = $(this); var formData = $('#scheduling-form :input').serializeArray(); formData.push({name: 'security', value: wp_all_export_security}); formData.push({name: 'action', value: 'save_scheduling'}); formData.push({name: 'element_id', value: <?php echo intval($export_id); ?>}); formData.push({name: 'scheduling_enable', value: schedulingEnable}); $.ajax({ type: 'POST', url: ajaxurl, data: formData, success: function (response) { $button.find('.easing-spinner').toggle(); $button.find('.save-text').html(initialValue); $button.find('svg').show(); setTimeout(function () { var submitEvent = $.Event('wpae-scheduling-options-form:submit'); $(document).trigger(submitEvent); }, 1000); }, error: function () { $button.find('.easing-spinner').toggle(); $button.find('.save-text').html(initialValue); } }); }); <?php if($schedulingExportOptions['scheduling_timezone'] == 'UTC') { ?> var timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; if ($('#timezone').find("option:contains('" + timeZone + "')").length != 0) { $('#timezone').trigger("chosen:updated"); $('#timezone').val(timeZone); $('#timezone').trigger("chosen:updated"); } else { var parts = timeZone.split('/'); var lastPart = parts[parts.length - 1]; var opt = $('#timezone').find("option:contains('" + lastPart + "')"); $('#timezone').val(opt.val()); $('#timezone').trigger("chosen:updated"); } <?php } ?> var saveSubscription = false; $('#add-subscription').on('click', function () { $('#add-subscription-field').show(); $('#add-subscription-field').animate({width: '400px'}, 225); $('#add-subscription-field').animate({left: '-1px'}, 225); $('#subscribe-button .button-subscribe').css('background-color', '#46ba69'); $('.text-container p').fadeOut(); setTimeout(function () { $('#find-subscription-link').show(); $('#find-subscription-link').animate({left: '410px'}, 300, 'swing'); }, 225); $('.subscribe-button-text').html('<?php esc_html_e('Activate'); ?>'); saveSubscription = true; return false; }); $('#subscribe-button').on('click', function () { if (saveSubscription) { $('#subscribe-button .easing-spinner').show(); var license = $('#add-subscription-field').val(); $.ajax({ url: ajaxurl + '?action=wpae_api&q=schedulingLicense/saveSchedulingLicense&security=<?php echo esc_js(wp_create_nonce("wp_all_export_secure"));?>', type: "POST", data: { license: license }, dataType: "json", success: function (response) { $('#subscribe-button .button-subscribe').css('background-color', '#425f9a'); if (response.success) { hasActiveLicense = true; $('#subscribe-button .easing-spinner').hide(); $('#subscribe-button svg.success').show(); $('#subscribe-button svg.success').fadeOut(3000, function () { $('.subscribe').hide({queue: false}); $('#subscribe-filler').show({queue: false}); }); $('.save-changes').removeClass('disabled'); window.pmxeHasSchedulingSubscription = true; $('.wpai-no-license').hide(); $('.wpai-license').show(); } else { $('#subscribe-button .easing-spinner').hide(); $('#subscribe-button svg.error').show(); $('.subscribe-button-text').html('<?php esc_html_e('Subscribe'); ?>'); $('#subscribe-button svg.error').fadeOut(3000, function () { $('#subscribe-button svg.error').hide({queue: false}); }); $('#add-subscription').html('<?php esc_html_e('Invalid license, try again?');?>'); $('.text-container p').fadeIn(); $('#find-subscription-link').animate({width: 'toggle'}, 300, 'swing'); setTimeout(function () { $('#add-subscription-field').animate({width: '140px'}, 225); $('#add-subscription-field').animate({left: '-152px'}, 225); }, 300); $('#add-subscription-field').val(''); $('#subscribe-button-text').html('<?php esc_html_e('Subscribe'); ?>'); saveSubscription = false; } } }); return false; } }); }); }); // help scheduling template $('.help_scheduling').on('click', function () { $('.wp-all-export-scheduling-help').css('left', ($(document).width() / 2) - 255).show(); $('#wp-all-export-scheduling-help-inner').css('max-height', $(window).height() - 150).show(); $('.wpallexport-super-overlay').show(); $('.wpallexport-overlay').hide(); $('.wp-pointer').hide(); return false; }); $('.wp_all_export_scheduling_help').find('h3').off('click').on('click', function () { var $action = $(this).find('span').html(); $('.wp_all_export_scheduling_help').find('h3').each(function () { $(this).find('span').html("+"); }); if ($action == "+") { $('.wp_all_export_help_tab').slideUp(); $('.wp_all_export_help_tab[rel=' + $(this).attr('id') + ']').slideDown(); $(this).find('span').html("-"); } else { $('.wp_all_export_help_tab[rel=' + $(this).attr('id') + ']').slideUp(); $(this).find('span').html("+"); } }); $('.wpallexport-super-overlay').on('click', function () { $('.wp-all-export-scheduling-help, .wp-all-export-scheduling-help-inner').hide(); $('.wp-pointer').show(); $('.wpallexport-overlay').show(); $(this).hide(); }); })(jQuery); </script> <?php require __DIR__ . '/../src/Scheduling/views/CommonJs.php'; ?> <div id="post-preview" class="wpallexport-preview wpallexport-scheduling-dialog"> <p class="wpallexport-preview-title"><strong>Scheduling Options for Export ID #<?php echo intval($export_id); ?></strong></p> <div class="wpallexport-preview-content" style="max-height: 700px; overflow: visible;"> <div style="margin-bottom: 20px;"> <label> <input type="radio" name="scheduling_enable" value="0" <?php if ((isset($schedulingExportOptions['scheduling_enable']) && $schedulingExportOptions['scheduling_enable'] == 0) || !isset($schedulingExportOptions['scheduling_enable'])) { ?> checked="checked" <?php } ?>/> <h4 style="display: inline-block;"><?php esc_html_e('Do Not Schedule'); ?></h4> </label> </div> <div> <label> <input type="radio" name="scheduling_enable" value="1" <?php if ($schedulingExportOptions['scheduling_enable'] == 1) { ?> checked="checked" <?php } ?>/> <h4 style="margin: 0; display: inline-flex; align-items: center;"><?php esc_html_e('Automatic Scheduling', PMXE_Plugin::LANGUAGE_DOMAIN); ?> <span class="connection-icon" style="margin-left: 8px; height: 16px;"> <?php include __DIR__ . '/../src/Scheduling/views/ConnectionIcon.php'; ?> </span> <?php if($schedulingExportOptions['scheduling_enable'] == 1) { ?> <?php if (!$scheduling->checkConnection()) { ?> <span class="wpai-license" style="margin-left: 8px; font-weight: normal; font-weight: normal; <?php if(!$hasActiveLicense) { ?> display: none; <?php }?>"><span class="unable-to-connect">Unable to connect, please contact support.</span></span> <?php } ?> <?php } ?> </h4> </label> </div> <form id="scheduling-form"> <div style="margin-bottom: 10px; margin-left:26px;"> <label style="font-size: 13px;"> <?php esc_html_e('Run this export on a schedule.'); ?> </label> </div> <div id="automatic-scheduling" style="margin-left: 21px; <?php if ($schedulingExportOptions['scheduling_enable'] != 1) { ?> display: none; <?php } ?>"> <div> <div class="input"> <label style="color: rgb(68,68,68);"> <input type="radio" <?php if (isset($schedulingExportOptions['scheduling_run_on']) && $schedulingExportOptions['scheduling_run_on'] != 'monthly') { ?> checked="checked" <?php } ?> name="scheduling_run_on" value="weekly" checked="checked"/> <?php esc_html_e('Every week on...', PMXE_Plugin::LANGUAGE_DOMAIN); ?> </label> </div> <input type="hidden" style="width: 500px;" name="scheduling_weekly_days" value="<?php echo esc_attr($schedulingExportOptions['scheduling_weekly_days']); ?>" id="weekly_days"/> <?php if (isset($schedulingExportOptions['scheduling_weekly_days'])) { $weeklyArray = explode(',', $schedulingExportOptions['scheduling_weekly_days']); } else { $weeklyArray = array(); } ?> <ul class="days-of-week" id="weekly" style="<?php if ($schedulingExportOptions['scheduling_run_on'] == 'monthly') { ?> display: none; <?php } ?>"> <li data-day="0" <?php if (in_array('0', $weeklyArray)) { ?> class="selected" <?php } ?>> Mon </li> <li data-day="1" <?php if (in_array('1', $weeklyArray)) { ?> class="selected" <?php } ?>> Tue </li> <li data-day="2" <?php if (in_array('2', $weeklyArray)) { ?> class="selected" <?php } ?>> Wed </li> <li data-day="3" <?php if (in_array('3', $weeklyArray)) { ?> class="selected" <?php } ?>> Thu </li> <li data-day="4" <?php if (in_array('4', $weeklyArray)) { ?> class="selected" <?php } ?>> Fri </li> <li data-day="5" <?php if (in_array('5', $weeklyArray)) { ?> class="selected" <?php } ?>> Sat </li> <li data-day="6" <?php if (in_array('6', $weeklyArray)) { ?> class="selected" <?php } ?>> Sun </li> </ul> </div> <div style="clear: both;"></div> <div> <div class="input"> <label style="color: rgb(68,68,68); margin-top: 5px;"> <input type="radio" <?php if (isset($schedulingExportOptions['scheduling_run_on']) && $schedulingExportOptions['scheduling_run_on'] == 'monthly') { ?> checked="checked" <?php } ?> name="scheduling_run_on" value="monthly"/> <?php esc_html_e('Every month on the first...', PMXE_Plugin::LANGUAGE_DOMAIN); ?> </label> </div> <input type="hidden" name="scheduling_monthly_days" value="<?php if (isset($schedulingExportOptions['scheduling_monthly_days'])) echo esc_attr($schedulingExportOptions['scheduling_monthly_days']); ?>" id="monthly_days"/> <?php if (isset($schedulingExportOptions['scheduling_monthly_days'])) { $monthlyArray = explode(',', $schedulingExportOptions['scheduling_monthly_days']); } else { $monthlyArray = array(); } ?> <ul class="days-of-week" id="monthly" style="<?php if ($schedulingExportOptions['scheduling_run_on'] != 'monthly') { ?> display: none; <?php } ?>"> <li data-day="0" <?php if (in_array('0', $monthlyArray)) { ?> class="selected" <?php } ?>> Mon </li> <li data-day="1" <?php if (in_array('1', $monthlyArray)) { ?> class="selected" <?php } ?>> Tue </li> <li data-day="2" <?php if (in_array('2', $monthlyArray)) { ?> class="selected" <?php } ?>> Wed </li> <li data-day="3" <?php if (in_array('3', $monthlyArray)) { ?> class="selected" <?php } ?>> Thu </li> <li data-day="4" <?php if (in_array('4', $monthlyArray)) { ?> class="selected" <?php } ?>> Fri </li> <li data-day="5" <?php if (in_array('5', $monthlyArray)) { ?> class="selected" <?php } ?>> Sat </li> <li data-day="6" <?php if (in_array('6', $monthlyArray)) { ?> class="selected" <?php } ?>> Sun </li> </ul> </div> <div style="clear: both;"></div> <div id="times-container" style="margin-left: 5px;"> <div style="margin-top: 10px; margin-bottom: 5px;"> What times do you want this export to run? </div> <div id="times" style="margin-bottom: 10px;"> <?php if (isset($schedulingExportOptions['scheduling_times']) && is_array($schedulingExportOptions['scheduling_times'])) { foreach ($schedulingExportOptions['scheduling_times'] as $time) { ?> <?php if ($time) { ?> <input class="timepicker" type="text" name="scheduling_times[]" value="<?php echo esc_attr($time); ?>"/> <?php } ?> <?php } ?> <input class="timepicker" type="text" name="scheduling_times[]"/> <?php } ?> </div> <div style="clear: both;"></div> <div class="timezone-select" style="position:absolute; margin-top: 10px;"> <?php $timezoneValue = false; if ($schedulingExportOptions['scheduling_timezone']) { $timezoneValue = $schedulingExportOptions['scheduling_timezone']; } $timezoneSelect = new \Wpae\Scheduling\Timezone\TimezoneSelect(); echo $timezoneSelect->getTimezoneSelect($timezoneValue); ?> </div> </div> <div style="height: 60px; margin-top: 30px; <?php if (!$hasActiveLicense) { ?>display: none; <?php } ?>" id="subscribe-filler"> </div> <?php if (!$hasActiveLicense) { ?> <div class="subscribe" style="margin-left: 5px; margin-top: 65px; margin-bottom: 130px; position: relative;"> <div class="button-container"> <a href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=515704" target="_blank" id="subscribe-button"> <div class="button button-primary button-hero wpallexport-large-button button-subscribe" style="background-image: none; width: 140px; text-align: center; position: absolute; z-index: 4;"> <svg class="success" width="30" height="30" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" style="fill: white; position: absolute; top: 7px; left: 9px; display: none;"> <path d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z" fill="white"/> </svg> <svg class="error" width="30" height="30" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg" style="fill: red; position: absolute; top: 2px; left: 7px; display: none;"> <path d="M1490 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"/> </svg> <div class="easing-spinner" style=" position: absolute; left: 37px; display: none;"> <div class="double-bounce1"></div> <div class="double-bounce2"></div> </div> <span class="subscribe-button-text"> <?php esc_html_e('Subscribe'); ?> </span> </div> </a> </div> <div class="text-container" style="position: absolute; left: 150px; top: 2px;"> <p><?php esc_html_e('Get automatic scheduling for unlimited sites, just $9/mo.'); ?></p> <p><?php esc_html_e('Have a license?'); ?> <a href="#" id="add-subscription"><?php esc_html_e('Register this site.'); ?></a> <?php esc_html_e('Questions?'); ?> <a href="#" class="help_scheduling">Read more.</a> </p> <input type="password" id="add-subscription-field" style="position: absolute; z-index: 2; top: -4px; font-size:14px;" placeholder="<?php esc_html_e('Enter your license', PMXE_Plugin::LANGUAGE_DOMAIN); ?>"/> <div style="position: absolute;" id="find-subscription-link"><a href="http://www.wpallimport.com/portal/automatic-scheduling/" target="_blank"><?php esc_html_e('Find your license.'); ?></a></div> </div> </div> <?php } ?> </div> </form> <?php require __DIR__ . '/../src/Scheduling/views/ManualScheduling.php'; ?> </div> </div> <?php wp_die(); }
[-] pmxe_before_export.php
[edit]
[-] gform_pre_handle_confirmation.php
[edit]
[-] wp_ajax_wpae_generate_token.php
[edit]
[-] wp_ajax_save_functions.php
[edit]
[-] wp_ajax_dismiss_export_warnings.php
[edit]
[-] wp_ajax_get_xml_spec.php
[edit]
[-] pmxe_exported_post.php
[edit]
[-] wp_ajax_dismiss_warnings.php
[edit]
[-] admin_head.php
[edit]
[-] wp_loaded.php
[edit]
[-] wp_ajax_wpae_realtime_export_status.php
[edit]
[-] wp_ajax_wpae_preview.php
[edit]
[-] wp_ajax_send_feedback.php
[edit]
[-] wp_ajax_generate_zapier_api_key.php
[edit]
[-] pmxe_after_export.php
[edit]
[-] wp_ajax_dismiss_review_modal.php
[edit]
[-] wp_ajax_wpae_filtering_count.php
[edit]
[-] wpmu_new_blog.php
[edit]
[-] wp_insert_comment.php
[edit]
[-] wp_ajax_wpae_remove_token.php
[edit]
[-] user_register.php
[edit]
[-] wp_ajax_save_scheduling.php
[edit]
[+]
..
[-] admin_menu.php
[edit]
[-] admin_init.php
[edit]
[-] wp_ajax_wpae_filtering.php
[edit]
[-] init.php
[edit]
[-] wp_ajax_wpae_available_rules.php
[edit]
[-] woocommerce_order_status_completed.php
[edit]
[-] wp_ajax_scheduling_dialog_content.php
[edit]
[-] admin_notices.php
[edit]
[-] wp_ajax_wpallexport.php
[edit]