Uname: Linux premium72.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.2.29 [ PHP INFO ] PHP os: Linux
Server Ip: 198.54.125.95
Your Ip: 216.73.216.164
User: matican (532) | Group: matican (531)
Safe Mode: OFF
Disable Function:
NONE

name : Popup.php
<?php

/**
 * @copyright Copyright (c) 2009-2022 ThemeCatcher (https://www.themecatcher.net)
 */
class Quform_Widget_Popup extends WP_Widget
{
    /**
     * @var Quform_Repository
     */
    protected $repository;

    /**
     * @var Quform_Form_Controller
     */
    protected $controller;

    /**
     * @var Quform_Options
     */
    protected $options;

    /**
     * @var array
     */
    protected $defaults;

    public function __construct()
    {
        $this->repository = Quform::getService('repository');
        $this->controller = Quform::getService('formController');
        $this->options = Quform::getService('options');

        $this->defaults = array(
            'title' => '',
            'id' => '',
            'content' => '',
            'show_title' => true,
            'show_description' => true,
            'width' => '',
            'options' => ''
        );

        $options = array(
            'description' => __('Display one of your created forms in a popup.', 'quform'),
            'classname' => 'quform-popup-widget'
        );

        /* translators: %s: the plugin name */
        parent::__construct('quform-popup-widget', sprintf(_x('%s Popup', 'popup widget name', 'quform'), Quform::getPluginName()), $options);
    }

    /**
     * Display the widget
     *
     * @param  array  $args      Display arguments
     * @param  array  $instance  The settings for this widget instance
     */
    public function widget($args, $instance)
    {
        $instance = wp_parse_args((array) $instance, $this->defaults);

        echo $args['before_widget'];

        $title = apply_filters('widget_title', $instance['title'], $instance, $this->id_base);

        if (Quform::isNonEmptyString($title)) {
            echo $args['before_title'] . $title . $args['after_title'];
        }

        $options = array(
            'id' => $instance['id'],
            'popup' => true,
            'content' => $instance['content'],
            'show_title' => $instance['show_title'],
            'show_description' => $instance['show_description'],
            'width' => $instance['width'],
            'options' => $instance['options']
        );

        echo $this->controller->form($options);

        echo $args['after_widget'];
    }

    /**
     * Update the widget settings
     *
     * @param   array  $new_instance  New settings for this widget instance
     * @param   array  $old_instance  Old settings for this widget instance
     * @return  array                 New settings for this widget instance
     */
    public function update($new_instance, $old_instance)
    {
        $instance = $old_instance;
        $instance['title'] = sanitize_text_field($new_instance['title']);
        $instance['id'] = is_numeric($new_instance['id']) ? (int) $new_instance['id'] : '';
        $instance['content'] = wp_kses_post($new_instance['content']);
        $instance['show_title'] = ! empty($new_instance['show_title']);
        $instance['show_description'] = ! empty($new_instance['show_description']);
        $instance['width'] = sanitize_text_field($new_instance['width']);
        $instance['options'] = wp_kses_post($new_instance['options']);

        $this->options->set('popupEnabled', true);

        return $instance;
    }

    /**
     * Display the widget settings form
     *
     * @param   array  $instance  The current settings for this widget instance
     * @return  null
     */
    public function form($instance)
    {
        $instance = wp_parse_args((array) $instance, $this->defaults);
        $orderBy = get_user_meta(get_current_user_id(), 'quform_forms_order_by', true);
        $order = get_user_meta(get_current_user_id(), 'quform_forms_order', true);
        $forms = $this->repository->formsToSelectArray(null, $orderBy, $order);

        if ( ! count($forms)) {
            if (current_user_can('quform_add_forms')) {
                /* translators: %1$s: open link tag, %2$s: close link tag */
                printf('<p>' . esc_html__('No forms yet, %1$sclick here to create one%2$s.', 'quform') . '</p>', '<a href="' . esc_url(admin_url('admin.php?page=quform.forms&sp=add')) . '">', '</a>');
            } else {
                echo '<p>' . esc_html__('No forms yet.', 'quform') . '</p>';
            }
            return;
        }
        ?>
        <p>
            <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Title:', 'quform'); ?></label>
            <input
                type="text"
                class="widefat"
                id="<?php echo esc_attr($this->get_field_id('title')); ?>"
                name="<?php echo esc_attr($this->get_field_name('title')); ?>"
                value="<?php echo Quform::escape($instance['title']); ?>">
            <br>
            <small><?php esc_html_e('The title of the widget.', 'quform'); ?></small>
        </p>
        <p>
            <label for="<?php echo esc_attr($this->get_field_id('id')); ?>"><?php esc_html_e('Form:', 'quform'); ?></label>
            <select
                id="<?php echo esc_attr($this->get_field_id('id')); ?>"
                name="<?php echo esc_attr($this->get_field_name('id')); ?>"
                class="widefat">
                <option value=""><?php esc_html_e('Select a form', 'quform'); ?></option>
                <?php foreach ($forms as $id => $name) : ?>
                    <option value="<?php echo Quform::escape($id); ?>" <?php selected($instance['id'], $id); ?>><?php echo Quform::escape($name); ?></option>
                <?php endforeach; ?>
            </select>
        </p>
        <p>
            <label for="<?php echo esc_attr($this->get_field_id('content')); ?>"><?php esc_html_e('Content:', 'quform'); ?></label>
            <textarea
                id="<?php echo esc_attr($this->get_field_id('content')); ?>"
                name="<?php echo esc_attr($this->get_field_name('content')); ?>"
                class="widefat"><?php echo Quform::escape($instance['content']); ?></textarea>
            <br>
            <small><?php esc_html_e('The text or HTML to trigger the popup, shortcodes can also be used.', 'quform'); ?></small>
        </p>
        <p>
            <input
                type="checkbox"
                id="<?php echo esc_attr($this->get_field_id('show_title')); ?>"
                name="<?php echo esc_attr($this->get_field_name('show_title')); ?>"
                value="1"
                <?php checked($instance['show_title']); ?>>
            <label for="<?php echo esc_attr($this->get_field_id('show_title')); ?>"><?php esc_html_e('Show form title', 'quform'); ?></label>
            <br>
            <input
                type="checkbox"
                id="<?php echo esc_attr($this->get_field_id('show_description')); ?>"
                name="<?php echo esc_attr($this->get_field_name('show_description')); ?>"
                value="1"
                <?php checked($instance['show_description']); ?>>
            <label for="<?php echo esc_attr($this->get_field_id('show_description')); ?>"><?php esc_html_e('Show form description', 'quform'); ?></label>
        </p>
        <p>
            <label for="<?php echo esc_attr($this->get_field_id('width')); ?>"><?php esc_html_e('Width:', 'quform'); ?></label>
            <input
                type="text"
                class="widefat"
                id="<?php echo esc_attr($this->get_field_id('width')); ?>"
                name="<?php echo esc_attr($this->get_field_name('width')); ?>"
                value="<?php echo Quform::escape($instance['width']); ?>">
            <br>
            <small><?php esc_html_e('The width of the popup, any CSS width or number is accepted.', 'quform'); ?></small>
        </p>
        <p>
            <label for="<?php echo esc_attr($this->get_field_id('options')); ?>"><?php esc_html_e('Options:', 'quform'); ?></label>
            <input
                type="text"
                class="widefat"
                id="<?php echo esc_attr($this->get_field_id('options')); ?>"
                name="<?php echo esc_attr($this->get_field_name('options')); ?>"
                value="<?php echo Quform::escape($instance['options']); ?>">
            <br>
            <small>
                <?php
                    printf(
                        /* translators: %1$s: open link tag, %2$s: close link tag */
                        esc_html__('JSON encoded options to pass to the popup script, %1$sexamples%2$s.', 'quform'),
                        '<a href="https://support.themecatcher.net/quform-wordpress-v2/guides/customization/popup-script-options" target="_blank">',
                        '</a>'
                    );
                ?>
            </small>
        </p>
        <?php
    }

    /**
     * Register the widget with WordPress
     */
    public static function register()
    {
        register_widget(__CLASS__);
    }
}
© 2025 XylotrechusZ