OwlCyberSecurity - MANAGER
Edit File: image-gallery.php
<?php if ( class_exists( 'MuseaCoreClassWidget' ) ) { class MuseaElatedClassImageGalleryWidget extends MuseaCoreClassWidget { public function __construct() { parent::__construct( 'eltdf_image_gallery_widget', esc_html__( 'Musea Image Gallery Widget', 'musea' ), array( 'description' => esc_html__( 'Add image gallery element to widget areas', 'musea' ) ) ); $this->setParams(); } protected function setParams() { $this->params = array( array( 'type' => 'textfield', 'name' => 'extra_class', 'title' => esc_html__( 'Custom CSS Class', 'musea' ) ), array( 'type' => 'textfield', 'name' => 'widget_bottom_margin', 'title' => esc_html__( 'Widget Bottom Margin (px)', 'musea' ) ), array( 'type' => 'textfield', 'name' => 'widget_title', 'title' => esc_html__( 'Widget Title', 'musea' ) ), array( 'type' => 'textfield', 'name' => 'widget_title_bottom_margin', 'title' => esc_html__( 'Widget Title Bottom Margin (px)', 'musea' ) ), array( 'type' => 'dropdown', 'name' => 'type', 'title' => esc_html__( 'Gallery Type', 'musea' ), 'options' => array( 'grid' => esc_html__( 'Image Grid', 'musea' ), 'slider' => esc_html__( 'Slider', 'musea' ) ) ), array( 'type' => 'textfield', 'name' => 'images', 'title' => esc_html__( 'Image ID\'s', 'musea' ), 'description' => esc_html__( 'Add images id for your image gallery widget, separate id\'s with comma', 'musea' ) ), array( 'type' => 'textfield', 'name' => 'image_size', 'title' => esc_html__( 'Image Size', 'musea' ), 'description' => esc_html__( 'Enter image size. Example: thumbnail, medium, large, full or other sizes defined by current theme. Alternatively enter image size in pixels: 200x100 (Width x Height). Leave empty to use "thumbnail" size', 'musea' ) ), array( 'type' => 'dropdown', 'name' => 'enable_image_shadow', 'title' => esc_html__( 'Enable Image Shadow', 'musea' ), 'options' => musea_elated_get_yes_no_select_array() ), array( 'type' => 'dropdown', 'name' => 'image_behavior', 'title' => esc_html__( 'Image Behavior', 'musea' ), 'options' => array( '' => esc_html__( 'None', 'musea' ), 'lightbox' => esc_html__( 'Open Lightbox', 'musea' ), 'custom-link' => esc_html__( 'Open Custom Link', 'musea' ), 'zoom' => esc_html__( 'Zoom', 'musea' ), 'grayscale' => esc_html__( 'Grayscale', 'musea' ) ) ), array( 'type' => 'textarea', 'name' => 'custom_links', 'title' => esc_html__( 'Custom Links', 'musea' ), 'description' => esc_html__( 'Delimit links by comma', 'musea' ) ), array( 'type' => 'dropdown', 'name' => 'custom_link_target', 'title' => esc_html__( 'Custom Link Target', 'musea' ), 'options' => musea_elated_get_link_target_array() ), array( 'type' => 'dropdown', 'name' => 'number_of_columns', 'title' => esc_html__( 'Number of Columns', 'musea' ), 'options' => musea_elated_get_number_of_columns_array( false, array( 'six' ) ) ), array( 'type' => 'dropdown', 'name' => 'space_between_items', 'title' => esc_html__( 'Space Between Items', 'musea' ), 'options' => musea_elated_get_space_between_items_array() ), array( 'type' => 'dropdown', 'name' => 'slider_navigation', 'title' => esc_html__( 'Enable Slider Navigation Arrows', 'musea' ), 'options' => musea_elated_get_yes_no_select_array( false ) ), array( 'type' => 'dropdown', 'name' => 'slider_pagination', 'title' => esc_html__( 'Enable Slider Pagination', 'musea' ), 'options' => musea_elated_get_yes_no_select_array( false ) ) ); } public function widget( $args, $instance ) { if ( ! is_array( $instance ) ) { $instance = array(); } $extra_class = ! empty( $instance['extra_class'] ) ? $instance['extra_class'] : ''; $instance['type'] = ! empty( $instance['type'] ) ? $instance['type'] : 'grid'; //prepare variables $params = ''; //is instance empty? if ( is_array( $instance ) && count( $instance ) ) { //generate shortcode params foreach ( $instance as $key => $value ) { $params .= " $key='$value' "; } } $widget_styles = array(); if ( isset( $instance['widget_bottom_margin'] ) && $instance['widget_bottom_margin'] !== '' ) { $widget_styles[] = 'margin-bottom: ' . musea_elated_filter_px( $instance['widget_bottom_margin'] ) . 'px'; } $widget_title_styles = array(); if ( isset( $instance['widget_title_bottom_margin'] ) && $instance['widget_title_bottom_margin'] !== '' ) { $widget_title_styles[] = 'margin-bottom: ' . musea_elated_filter_px( $instance['widget_title_bottom_margin'] ) . 'px'; } ?> <div class="widget eltdf-image-gallery-widget <?php echo esc_attr( $extra_class ); ?>" <?php echo musea_elated_get_inline_style( $widget_styles ); ?>> <?php if ( ! empty( $instance['widget_title'] ) ) { if ( ! empty( $widget_title_styles ) ) { $args['before_title'] = musea_elated_widget_modified_before_title( $args['before_title'], $widget_title_styles ); } echo wp_kses_post( $args['before_title'] ) . esc_html( $instance['widget_title'] ) . wp_kses_post( $args['after_title'] ); } echo do_shortcode( "[eltdf_image_gallery $params]" ); // XSS OK ?> </div> <?php } } }