Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
superstepsgroup.com
/
plugin-old
/
wp-rollback
/
rselements
/
widgets
/
gallery
/
Editing: gallery-widget.php
<?php /** * Elementor rsgallery Widget. * * Elementor widget that inserts an embbedable content into the page, from any given URL. * * @since 1.0.0 */ use Elementor\Group_Control_Css_Filter; use Elementor\Repeater; use Elementor\Controls_Manager; use Elementor\Group_Control_Box_Shadow; use Elementor\Group_Control_Typography; use Elementor\Scheme_Typography; use Elementor\Group_Control_Image_Size; use Elementor\Utils; defined( 'ABSPATH' ) || die(); class Rsaddon_Elementor_pro_Gallery_Widget extends \Elementor\Widget_Base { /** * Get widget name. * * Retrieve rsgallery widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'rsgallery'; } /** * Get widget title. * * Retrieve rsgallery widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return esc_html__( 'RS Gallery', 'rsaddon' ); } /** * Get widget icon. * * Retrieve rsgallery widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'glyph-icon flaticon-attach'; } /** * Get widget categories. * * Retrieve the list of categories the rsgallery widget belongs to. * * @since 1.0.0 * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'rsaddon_category' ]; } /** * Register rsgallery widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.0.0 * @access protected */ protected function _register_controls() { $this->start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'rsaddon' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'rs-gallery', [ 'label' => esc_html__( 'Gallery Images', 'rsaddon' ), 'type' => Controls_Manager::GALLERY, 'default' => [], ] ); $this->add_control( 'gallery_style', [ 'label' => esc_html__( 'Style', 'rsaddon' ), 'type' => Controls_Manager::SELECT, 'default' => 'style1', 'options' => [ 'style1' => esc_html__( 'Style 1', 'rsaddon' ), 'style2' => esc_html__( 'Style 2', 'rsaddon' ), ], 'separator' => 'before', ] ); $this->add_control( 'gallery_columns', [ 'label' => esc_html__( 'Columns', 'rsaddon' ), 'type' => Controls_Manager::SELECT, 'default' => 4, 'options' => [ '6' => esc_html__( '2 Column', 'rsaddon' ), '4' => esc_html__( '3 Column', 'rsaddon' ), '3' => esc_html__( '4 Column', 'rsaddon' ), '2' => esc_html__( '6 Column', 'rsaddon' ), ], 'separator' => 'before', ] ); $this->add_control( 'gallery_column_gap', [ 'label' => esc_html__( 'Column Gaps', 'rsaddon' ), 'type' => Controls_Manager::SELECT, 'default' => 'default', 'options' => [ 'default' => esc_html__( 'Yes', 'rsaddon' ), 'no-gutters' => esc_html__( 'No', 'rsaddon' ), ], 'separator' => 'before', ] ); $this->add_control( 'gallery_effice', [ 'label' => esc_html__( 'Background Hover Effect', 'rsaddon' ), 'label_block' => true, 'type' => Controls_Manager::SELECT, 'default' => 'left', 'options' => [ 'left' => esc_html__( 'Left', 'rsaddon' ), 'top' => esc_html__( 'Top', 'rsaddon' ), 'right' => esc_html__( 'Right', 'rsaddon' ), 'bottom' => esc_html__( 'Bottom', 'rsaddon' ), ], 'separator' => 'before', ] ); $this->add_control( 'gallery_cation_style', [ 'label' => esc_html__( 'Caption Title Show/Hide', 'rsaddon' ), 'label_block' => true, 'type' => Controls_Manager::SELECT, 'default' => 'hide', 'options' => [ 'show' => esc_html__( 'Show', 'rsaddon' ), 'hide' => esc_html__( 'Hide', 'rsaddon' ), ], 'separator' => 'before', ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'thumbnail', 'default' => 'large', 'separator' => 'before', 'exclude' => [ 'custom' ], 'separator' => 'before', ] ); $this->add_control( 'selected_icon', [ 'label' => esc_html__( 'Select Hover Icon', 'elementor' ), 'type' => Controls_Manager::ICON, 'options' => rsaddon_pro_get_icons(), 'default' => 'fa fa-search', 'separator' => 'before', ] ); $this->add_control( 'image_spacing', [ 'label' => esc_html__( 'Spacing', 'rsaddon' ), 'type' => Controls_Manager::SELECT, 'options' => [ '' => esc_html__( 'Default', 'rsaddon' ), 'custom' => esc_html__( 'Custom', 'rsaddon' ), ], 'prefix_class' => 'gallery-spacing-', 'default' => '', 'separator' => 'before', ] ); $this->add_control( 'image_spacing_custom', [ 'label' => esc_html__( 'Image Spacing', 'rsaddon' ), 'type' => Controls_Manager::SLIDER, 'show_label' => false, 'range' => [ 'px' => [ 'max' => 100, ], ], 'default' => [ 'size' => 0, ], 'condition' => [ 'image_spacing' => 'custom', ], 'selectors' => [ '{{WRAPPER}} .galley-img' => 'padding-right: {{SIZE}}{{UNIT}} ; margin-bottom: {{SIZE}}{{UNIT}};' ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_gallery_images', [ 'label' => esc_html__( 'Gallery Style', 'rsaddon' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'icon_font_size', [ 'label' => esc_html__( 'Icon Font Size', 'rsaddon' ), 'type' => Controls_Manager::SLIDER, 'show_label' => true, 'range' => [ 'px' => [ 'max' => 100, ], ], 'default' => [ 'size' => 22, ], 'selectors' => [ '{{WRAPPER}} .rs-galleys .galley-img .p-zoom i:before, .rs-galleys .galley-img .zoom-icon i:before' => 'font-size: {{SIZE}}{{UNIT}}' ], ] ); $this->add_control( 'gallery_icon_color', [ 'label' => esc_html__( 'Icon Color', 'rsaddon' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .rs-galleys .galley-img .zoom-icon' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'gallery_icon_hover_color', [ 'label' => esc_html__( 'Icon Hover Color', 'rsaddon' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .rs-galleys .galley-img .zoom-icon:hover' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'gallery_title_color', [ 'label' => esc_html__( 'Caption Title Color', 'rsaddon' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .rs-galleys .galley-img .gallery-titles' => 'color: {{VALUE}}', ], 'condition' => [ 'gallery_cation_style' => 'show' ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'gallery_title_typography', 'label' => esc_html__( 'Caption Title Typography', 'rsaddon' ), 'selector' => '{{WRAPPER}} .rs-galleys .galley-img .gallery-titles', 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'condition' => [ 'gallery_cation_style' => 'show' ], ] ); $this->add_responsive_control( 'gallery_left_position', [ 'label' => esc_html__( 'Caption Title Left Right Position', 'rsaddon' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ '%' => [ 'min' => -100, 'max' => 100, ], 'px' => [ 'min' => -1000, 'max' => 1000, ], ], 'selectors' => [ '{{WRAPPER}} .rs-galleys .galley-img .gallery-titles' => 'left: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'gallery_cation_style' => 'show' ], ] ); $this->add_responsive_control( 'gallery_top_position', [ 'label' => esc_html__( 'Caption Title Top Bottom Position', 'rsaddon' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ '%' => [ 'min' => -100, 'max' => 100, ], 'px' => [ 'min' => -1000, 'max' => 1000, ], ], 'selectors' => [ '{{WRAPPER}} .rs-galleys .galley-img .gallery-titles' => 'top: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'gallery_cation_style' => 'show' ], ] ); $this->add_control( 'image_overlay_color', [ 'label' => esc_html__( 'Image Hover Overlay Color', 'rsaddon' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .rs-galleys .file-list-image:before, .rs-galleys .galley-img:before' => 'background: {{VALUE}};', ], ] ); $this->end_controls_section(); } /** * Render rsgallery widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * @access protected */ protected function render() { $settings = $this->get_settings_for_display(); ?> <div class="row rs-galleys elementor-image-gallery <?php echo esc_html( $settings['gallery_column_gap'] );?>"> <?php foreach ( $settings['rs-gallery'] as $image ) { $gallery_item = wp_get_attachment_image_url( $image['id'], $settings['thumbnail_size'] ); $gallery_titles = get_post_field( 'post_title', $image['id'] ); ?> <div class="col-md-<?php echo esc_html( $settings['gallery_columns'] );?>"> <div class="galley-img <?php echo esc_html( $settings['gallery_effice'] );?> <?php echo esc_html( $settings['gallery_style'] );?>"> <a class="image-popup zoom-icon" href="<?php echo esc_url (wp_get_attachment_image_url( $image['id'], 'Full'));?>"> <i class="<?php echo esc_html( $settings['selected_icon']);?>"></i> </a> <a class="img-wrap" href="<?php echo esc_url ( wp_get_attachment_image_url( $image['id'], 'Full'));?>" title="Title 1"> <img src="<?php echo esc_url($gallery_item);?>" alt=" "> </a> <?php if(!empty($gallery_titles) && ($settings['gallery_cation_style'] == 'show')){ echo '<h5 class="gallery-titles">'.$gallery_titles.'</h5>'; } ?> </div> </div> <?php }?> </div> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery('.image-popup').magnificPopup({ type: 'image', callbacks: { beforeOpen: function() { this.st.image.markup = this.st.image.markup.replace('mfp-figure', 'mfp-figure animated zoomInDown'); } }, gallery: { enabled: true } }); }); </script> <?php } }?>
Save
Cancel