HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //home4/cca63905/.trash/wp-content/themes/accesspress-store/inc/widgets/widget-promo.php
<?php

/**
 * Testimonial post/page widget
 *
 * @package Accesspress Pro
 */
/**
 * Adds accesspress_store_Testimonial widget.
 */
add_action('widgets_init', 'register_promo_widget');

function register_promo_widget() {
    register_widget('accesspress_storemo');
}

if( !class_exists( 'accesspress_storemo' ) ) :
class accesspress_storemo extends WP_Widget {

    /**
     * Register widget with WordPress.
     */
    public function __construct() {
        parent::__construct(
            'accesspress_storemo', 'AP : Promo Widget', array(
                'description' => esc_html__('A widget that Gives Promo of the object', 'accesspress-store')
                )
            );
    }

    /**
     * Helper function that holds widget fields
     * Array is used in update and form functions
     */
    private function widget_fields() {
        $fields = array(
            'promo_title' => array(
                'accesspress_store_widgets_name' => 'promo_title',
                'accesspress_store_widgets_title' => esc_html__('Title', 'accesspress-store'),
                'accesspress_store_widgets_field_type' => 'text',
                ),
            
            'promo_image' => array(
                'accesspress_store_widgets_name' => 'promo_image',
                'accesspress_store_widgets_title' => esc_html__('Upload Image', 'accesspress-store'),
                'accesspress_store_widgets_field_type' => 'upload',
                ),
            
            'promo_desc' => array(
                'accesspress_store_widgets_name' => 'promo_desc',
                'accesspress_store_widgets_title' => esc_html__('Enter Promo Desc', 'accesspress-store'),
                'accesspress_store_widgets_field_type' => 'textarea',   
                'accesspress_store_widgets_row' =>'4',
                ),

            'promo_link_btn' => array(
                'accesspress_store_widgets_name' => 'promo_link_btn',
                'accesspress_store_widgets_title' => esc_html__('Enter Promo Button Text', 'accesspress-store' ),
                'accesspress_store_widgets_field_type' => 'text'
                ),
            
            'promo_link' => array(
                'accesspress_store_widgets_name' => 'promo_link',
                'accesspress_store_widgets_title' => esc_html__('Enter Promo Link', 'accesspress-store' ),
                'accesspress_store_widgets_field_type' => 'url'
                ),
            
            
            );

return $fields;
}

    /**
     * Front-end display of widget.
     *
     * @see WP_Widget::widget()
     *
     * @param array $args     Widget arguments.
     * @param array $instance Saved values from database.
     */
    public function widget($args, $instance) {
        extract($args);
        if($instance!=null){        
            $promo_title = $instance['promo_title'];
            $promo = $instance['promo_image'];

            $promo_desc = $instance['promo_desc'];
            if(isset($instance['promo_link_btn'])){
                $promo_link_btn = $instance['promo_link_btn'];
            }
            $promo_link = $instance['promo_link'];

            echo wp_kses_post($before_widget); 
            ?>
            <div class="promo-widget-wrap">
               <a href="<?php echo esc_url($promo_link); ?>">
                   <div class="promo-image">
                    <?php if (!empty($promo)): ?>
                        <img src = "<?php echo esc_url($promo); ?>" alt="<?php echo esc_attr($promo_title); ?>" />
                    <?php endif; ?>
                    <div class="caption wow fadeIn" data-wow-delay="1s">
                        <?php if (!empty($promo_title)): ?>
                            <h4 class="widget-title"><?php echo esc_html($promo_title); ?></h4>
                        <?php endif; ?>

                        <?php if (!empty($promo_desc)): ?>
                            <div class="promo-desc"><?php echo wp_kses_post($promo_desc); ?></div>
                        <?php endif; ?> 

                        <?php if (!empty($promo_link_btn)): ?>
                            <span class="btn promo-link-btn"><?php echo esc_html($promo_link_btn); ?></span>
                        <?php endif; ?>   
                    </div>                 
                </div>
            </a>                        
        </div>        
        <?php 
        echo wp_kses_post($after_widget);
    }
}

    /**
     * Sanitize widget form values as they are saved.
     *
     * @see WP_Widget::update()
     *
     * @param	array	$new_instance	Values just sent to be saved.
     * @param	array	$old_instance	Previously saved values from database.
     *
     * @uses	accesspress_store_widgets_updated_field_value()		defined in widget-fields.php
     *
     * @return	array Updated safe values to be saved.
     */
    public function update($new_instance, $old_instance) {
        $instance = $old_instance;

        $widget_fields = $this->widget_fields();

        // Loop through fields
        foreach ($widget_fields as $widget_field) {

            extract($widget_field);

            // Use helper function to get updated field values
            $instance[$accesspress_store_widgets_name] = accesspress_store_widgets_updated_field_value($widget_field, $new_instance[$accesspress_store_widgets_name]);
        }

        return $instance;
    }

    /**
     * Back-end widget form.
     *
     * @see WP_Widget::form()
     *
     * @param	array $instance Previously saved values from database.
     *
     * @uses	accesspress_store_widgets_show_widget_field()		defined in widget-fields.php
     */
    public function form($instance) {
        $widget_fields = $this->widget_fields();

        // Loop through fields
        foreach ($widget_fields as $widget_field) {

            // Make array elements available as variables
            extract($widget_field);
            $accesspress_store_widgets_field_value = !empty($instance[$accesspress_store_widgets_name]) ? esc_attr($instance[$accesspress_store_widgets_name]) : '';
            accesspress_store_widgets_show_widget_field($this, $widget_field, $accesspress_store_widgets_field_value);
        }
    }
}
endif;