HEX
Server:Apache
System:Linux localhost 5.10.0-14-amd64 #1 SMP Debian 5.10.113-1 (2022-04-29) x86_64
User:enlugo-es (10006)
PHP:7.4.33
Disabled:opcache_get_status
Upload Files
File: /var/www/vhosts/enlugo.es/httpdocs/wp-content/plugins/landing-pages/classes/class.widgets.php
<?php

/**
 * Class adds the 'conversion area widget' designed to compliment landing pages set to use the default template.
 *
 * @package     LandingPages
 * @subpackage  Widgets
 */


add_action('widgets_init', 'lp_load_widgets');

function lp_load_widgets() {

    register_widget('LP_Widget_Conversion_Area');

}

class LP_Widget_Conversion_Area extends WP_Widget {


    function __construct() {

        /* Widget settings. */
        $widget_ops = array('classname' => 'class_LP_Widget_Conversion_Area', 'description' => __('Use this widget on your landing page sidebar. This sidebar replaces the normal sidebar while using your default theme as a template, or other inactive themes as landing page templates.', 'inbound-pro'));

        /* Widget control settings. */
        $control_ops = array('width' => 300, 'height' => 350, 'id_base' => 'id_lp_conversion_area_widget');

        /* Create the widget. */
        parent::__construct('id_lp_conversion_area_widget', __('Landing Pages: Conversion Area Widget', 'landing-pages'), $widget_ops, $control_ops);
    }

    /**
     * How to display the widget on the screen.
     */
    function widget($args, $instance) {
        global $wp_query;

        $this_id = $wp_query->post->ID;

        $post = get_post($this_id);

        $this_type = $wp_query->post->post_type;

        if ($this_type == 'landing-page') {
            extract($args);

            $position = Landing_Pages_Variations::get_conversion_area_placement( $wp_query->post->ID );
            if ($position == 'widget') {

                $title = apply_filters('widget_title', $instance['title']);

                /* Before widget (defined by themes). */
                echo $before_widget;

                /* Display the widget title if one was input (before and after defined by themes). */
                if ($title) {
                    echo $before_title . $title . $after_title;
                }

                echo "<div id='lp_container' class='inbound-conversion-sidebar'>";
                echo do_shortcode(lp_conversion_area($post, $content = null, $return = true, $doshortcode = false));
                echo "</div>";

                /* After widget (defined by themes). */
                echo $after_widget;
            }
        }
    }

    /**
     * Update the widget settings.
     */
    function update($new_instance, $old_instance) {
        $instance = $old_instance;
        /* Strip tags for title and name to remove HTML (important for text inputs). */
        $instance['title'] = strip_tags($new_instance['title']);
        return $instance;
    }

    /**
     * Displays the widget settings controls on the widget panel.
     * Make use of the get_field_id() and get_field_name() function
     * when creating your form elements. This handles the confusing stuff.
     */
    function form($instance) {

        /* Set up some default widget settings. */
        $defaults = array();
        $instance = wp_parse_args((array)$instance, $defaults); ?>

        <!-- Widget Title: Text Input -->
        <p>
            <?php _e("This box will render the landing page conversion area on the 'default' template.", 'landing-pages'); ?>
        </p>

        <?php
    }
}