HEX
Server: Apache
System: Linux sys.digiflyeg.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User: opal (1023)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/opal/public_html/wp-content/plugins/master-addons/inc/classes/Feedback.php
<?php

namespace MasterAddons\Inc\Classes;

use MasterAddons\Inc\Classes\Notifications\Base\User_Data;

// No, Direct access Sir !!!
if (!defined('ABSPATH')) {
    exit;
}

/**
 * Feedback
 *
 * @author Jewel Theme <support@jeweltheme.com>
 */
class Feedback
{

    use User_Data;

    /**
     * Construct Method
     *
     * @return void
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function __construct()
    {
        add_action('admin_enqueue_scripts', [$this, 'admin_suvery_scripts']);
        add_action('admin_footer', [$this, 'deactivation_footer']);
        add_action('wp_ajax_jltma_deactivation_survey', array($this, 'jltma_deactivation_survey'));
    }


    public function proceed()
    {

        global $current_screen;
        if (
            isset($current_screen->parent_file)
            && $current_screen->parent_file == 'plugins.php'
            && isset($current_screen->id)
            && $current_screen->id == 'plugins'
        ) {
            return true;
        }
        return false;
    }

    public function admin_suvery_scripts($handle)
    {
        if ('plugins.php' === $handle) {
            wp_enqueue_style('jltma-survey', JLTMA_ASSETS . 'css/plugin-survey.css');
        }
    }

    /**
     * Deactivation Survey
     */
    public function jltma_deactivation_survey()
    {
        check_ajax_referer('jltma_deactivation_nonce');

        $deactivation_reason  = !empty($_POST['deactivation_reason']) ? sanitize_text_field(wp_unslash($_POST['deactivation_reason'])) : '';

        if (empty($deactivation_reason)) {
            return;
        }

        $email = get_bloginfo('admin_email');
        $author_obj = get_user_by('email', $email);
        $user_id    = $author_obj->ID;
        $full_name  = $author_obj->display_name;

        $response = $this->get_collect_data($user_id, array(
            'first_name'              => $full_name,
            'email'                   => $email,
            'deactivation_reason'     => $deactivation_reason,
        ));

        return $response;
    }


    public function get_survey_questions()
    {

        return [
            'no_longer_needed' => [
                'title' => esc_html__('I no longer need the plugin', 'master-addons'),
                'input_placeholder' => '',
            ],
            'found_a_better_plugin' => [
                'title' => esc_html__('I found a better plugin', 'master-addons'),
                'input_placeholder' => esc_html__('Please share which plugin', 'master-addons'),
            ],
            'couldnt_get_the_plugin_to_work' => [
                'title' => esc_html__('I couldn\'t get the plugin to work', 'master-addons'),
                'input_placeholder' => '',
            ],
            'temporary_deactivation' => [
                'title' => esc_html__('It\'s a temporary deactivation', 'master-addons'),
                'input_placeholder' => '',
            ],
            'jltma_pro' => [
                'title' => sprintf(esc_html__('I have %1$s Pro', 'master-addons'), JLTMA),
                'input_placeholder' => '',
                'alert' => sprintf(esc_html__('Wait! Don\'t deactivate %1$s. You have to activate both %1$s and %1$s Pro in order for the plugin to work.', 'master-addons'), JLTMA),
            ],
            'need_better_design' => [
                'title' => esc_html__('I need better design and presets', 'master-addons'),
                'input_placeholder' => esc_html__('Let us know your thoughts', 'master-addons'),
            ],
            'other' => [
                'title' => esc_html__('Other', 'master-addons'),
                'input_placeholder' => esc_html__('Please share the reason', 'master-addons'),
            ],
        ];
    }


    /**
     * Deactivation Footer
     */
    public function deactivation_footer()
    {

        if (!$this->proceed()) {
            return;
        }

?>
        <div class="jltma-deactivate-survey-overlay" id="jltma-deactivate-survey-overlay"></div>
        <div class="jltma-deactivate-survey-modal" id="jltma-deactivate-survey-modal">
            <header>
                <div class="jltma-deactivate-survey-header">
                    <img src="<?php echo esc_url(JLTMA_IMAGE_DIR . 'logo.png'); ?>" />
                    <h3><?php echo wp_sprintf('%1$s %2$s', JLTMA, __('- Feedback', 'master-addons')); ?></h3>
                </div>
            </header>
            <div class="jltma-deactivate-info">
                <?php echo wp_sprintf('%1$s %2$s', __('If you have a moment, please share why you are deactivating', 'master-addons'), JLTMA); ?>
            </div>
            <div class="jltma-deactivate-content-wrapper">
                <form action="#" class="jltma-deactivate-form-wrapper">
                    <?php foreach ($this->get_survey_questions() as $reason_key => $reason) { ?>
                        <div class="jltma-deactivate-input-wrapper">
                            <input id="jltma-deactivate-feedback-<?php echo esc_attr($reason_key); ?>" class="jltma-deactivate-feedback-dialog-input" type="radio" name="reason_key" value="<?php echo $reason_key; ?>">
                            <label for="jltma-deactivate-feedback-<?php echo esc_attr($reason_key); ?>" class="jltma-deactivate-feedback-dialog-label"><?php echo esc_html($reason['title']); ?></label>
                            <?php if (!empty($reason['input_placeholder'])) : ?>
                                <input class="jltma-deactivate-feedback-text" type="text" name="reason_<?php echo esc_attr($reason_key); ?>" placeholder="<?php echo esc_attr($reason['input_placeholder']); ?>" />
                            <?php endif; ?>
                        </div>
                    <?php } ?>
                    <div class="jltma-deactivate-footer">
                        <button id="jltma-dialog-lightbox-submit" class="jltma-dialog-lightbox-submit"><?php echo esc_html__('Submit &amp; Deactivate', 'master-addons'); ?></button>
                        <button id="jltma-dialog-lightbox-skip" class="jltma-dialog-lightbox-skip"><?php echo esc_html__('Skip & Deactivate', 'master-addons'); ?></button>
                    </div>
                </form>
            </div>
        </div>

        <script>
            var deactivate_url = '#';

            jQuery(document).on('click', '#deactivate-master-addons', function(e) {
                e.preventDefault();
                deactivate_url = e.target.href;
                jQuery('#jltma-deactivate-survey-overlay').addClass('jltma-deactivate-survey-is-visible');
                jQuery('#jltma-deactivate-survey-modal').addClass('jltma-deactivate-survey-is-visible');
            });

            jQuery('#jltma-dialog-lightbox-skip').on('click', function(e) {
                e.preventDefault();
                window.location.replace(deactivate_url);
            });


            jQuery(document).on('click', '#jltma-dialog-lightbox-submit', async function(e) {
                e.preventDefault();

                jQuery('#jltma-dialog-lightbox-submit').addClass('jltma-loading');

                var $dialogModal = jQuery('.jltma-deactivate-input-wrapper'),
                    radioSelector = '.jltma-deactivate-feedback-dialog-input';
                $dialogModal.find(radioSelector).on('change', function() {
                    $dialogModal.attr('data-feedback-selected', jQuery(this).val());
                });
                $dialogModal.find(radioSelector + ':checked').trigger('change');


                // Reasons for deactivation
                var deactivation_reason = '';
                var reasonData = jQuery('.jltma-deactivate-form-wrapper').serializeArray();

                jQuery.each(reasonData, function(reason_index, reason_value) {
                    if ('reason_key' == reason_value.name && reason_value.value != '') {
                        const reason_input_id = '#jltma-deactivate-feedback-' + reason_value.value,
                            reason_title = jQuery(reason_input_id).siblings('label').text(),
                            reason_placeholder_input = jQuery(reason_input_id).siblings('input').val(),
                            format_title_with_key = reason_value.value + ' - ' + reason_placeholder_input,
                            format_title = reason_title + ' - ' + reason_placeholder_input;

                        deactivation_reason = reason_value.value;

                        if ('found_a_better_plugin' == reason_value.value) {
                            deactivation_reason = format_title_with_key;
                        }

                        if ('need_better_design' == reason_value.value) {
                            deactivation_reason = format_title_with_key;
                        }

                        if ('other' == reason_value.value) {
                            deactivation_reason = format_title_with_key;
                        }
                    }
                });

                await jQuery.ajax({
                    url: '<?php echo esc_url(admin_url('admin-ajax.php')); ?>',
                    method: 'POST',
                    // crossDomain: true,
                    async: true,
                    // dataType: 'jsonp',
                    data: {
                        action: 'jltma_deactivation_survey',
                        _wpnonce: '<?php echo esc_js(wp_create_nonce('jltma_deactivation_nonce')); ?>',
                        deactivation_reason: deactivation_reason
                    },
                    success: function(response) {
                        window.location.replace(deactivate_url);
                    }
                });
                return true;
            });

            jQuery('#jltma-deactivate-survey-overlay').on('click', function() {
                jQuery('#jltma-deactivate-survey-overlay').removeClass('jltma-deactivate-survey-is-visible');
                jQuery('#jltma-deactivate-survey-modal').removeClass('jltma-deactivate-survey-is-visible');
            });
        </script>
<?php
    }
}