File "class-images-gallery.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/elementor/elements/class-images-gallery.php
File size: 17.43 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Title map.
*
* @package xts
*/
namespace XTS\Elementor;
use Elementor\Control_Media;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Plugin;
use Elementor\Group_Control_Image_Size;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
/**
* Elementor widget that inserts an embeddable content into the page, from any given URL.
*
* @since 1.0.0
*/
class Images_Gallery extends Widget_Base {
/**
* Get widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'wd_images_gallery';
}
/**
* Get widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Images gallery', 'woodmart' );
}
/**
* Get widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'wd-icon-images-gallery';
}
/**
* Get widget categories.
*
* @since 1.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return array( 'wd-elements' );
}
/**
* Register the widget controls.
*
* @since 1.0.0
* @access protected
*/
protected function register_controls() {
/**
* Content tab.
*/
/**
* General settings.
*/
$this->start_controls_section(
'general_content_section',
array(
'label' => esc_html__( 'General', 'woodmart' ),
)
);
$this->add_control(
'extra_width_classes',
array(
'type' => 'wd_css_class',
'default' => 'wd-width-100',
'prefix_class' => '',
)
);
$this->add_control(
'ids',
array(
'label' => esc_html__( 'Images', 'woodmart' ),
'type' => Controls_Manager::GALLERY,
'default' => array(),
)
);
$this->add_group_control(
Group_Control_Image_Size::get_type(),
array(
'name' => 'ids', // Need images id.
'default' => 'large',
'separator' => 'none',
)
);
$this->end_controls_section();
/**
* Click action settings.
*/
$this->start_controls_section(
'click_action_section',
array(
'label' => esc_html__( 'Click action', 'woodmart' ),
)
);
$this->add_control(
'on_click',
array(
'label' => esc_html__( 'On click action', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'lightbox' => esc_html__( 'Lightbox', 'woodmart' ),
'links' => esc_html__( 'Custom link', 'woodmart' ),
'none' => esc_html__( 'None', 'woodmart' ),
),
'default' => 'lightbox',
)
);
$this->add_control(
'target_blank',
array(
'label' => esc_html__( 'Open in new tab', 'woodmart' ),
'type' => Controls_Manager::SWITCHER,
'default' => '0',
'label_on' => esc_html__( 'Yes', 'woodmart' ),
'label_off' => esc_html__( 'No', 'woodmart' ),
'return_value' => '1',
'condition' => array(
'on_click' => array( 'links' ),
),
)
);
$this->add_control(
'caption',
array(
'label' => esc_html__( 'Images captions', 'woodmart' ),
'description' => esc_html__( 'Display images captions below the images when you open them in lightbox. Captions are based on titles of your photos and can be edited in Dashboard -> Media.', 'woodmart' ),
'type' => Controls_Manager::SWITCHER,
'default' => '0',
'label_on' => esc_html__( 'Yes', 'woodmart' ),
'label_off' => esc_html__( 'No', 'woodmart' ),
'return_value' => '1',
'condition' => array(
'on_click' => array( 'lightbox' ),
),
)
);
$this->add_control(
'custom_links',
array(
'label' => esc_html__( 'Custom links', 'woodmart' ),
'description' => esc_html__( 'Enter links for each slide (Note: divide links with linebreaks (Enter).', 'woodmart' ),
'type' => Controls_Manager::TEXTAREA,
'condition' => array(
'on_click' => array( 'links' ),
),
)
);
$this->end_controls_section();
/**
* Extra settings.
*/
$this->start_controls_section(
'extra_content_section',
array(
'label' => esc_html__( 'Extra', 'woodmart' ),
)
);
$this->add_control(
'lazy_loading',
array(
'label' => esc_html__( 'Lazy loading for images', 'woodmart' ),
'description' => esc_html__( 'Enable lazy loading for images for this element.', 'woodmart' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'no',
'label_on' => esc_html__( 'Yes', 'woodmart' ),
'label_off' => esc_html__( 'No', 'woodmart' ),
'return_value' => 'yes',
)
);
$this->end_controls_section();
/**
* Style tab.
*/
/**
* Layout settings.
*/
$this->start_controls_section(
'layout_style_section',
array(
'label' => esc_html__( 'Layout', 'woodmart' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_control(
'view',
array(
'label' => esc_html__( 'View', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'grid' => esc_html__( 'Default grid', 'woodmart' ),
'masonry' => esc_html__( 'Masonry grid', 'woodmart' ),
'carousel' => esc_html__( 'Carousel', 'woodmart' ),
'justified' => esc_html__( 'Justified gallery', 'woodmart' ),
),
'default' => 'grid',
)
);
$this->add_responsive_control(
'spacing',
array(
'label' => esc_html__( 'Space between', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
0 => esc_html__( '0 px', 'woodmart' ),
2 => esc_html__( '2 px', 'woodmart' ),
6 => esc_html__( '6 px', 'woodmart' ),
10 => esc_html__( '10 px', 'woodmart' ),
20 => esc_html__( '20 px', 'woodmart' ),
30 => esc_html__( '30 px', 'woodmart' ),
),
'default' => '0',
'devices' => array( 'desktop', 'tablet', 'mobile' ),
'classes' => 'wd-hide-custom-breakpoints',
'condition' => array(
'view!' => array( 'justified' ),
),
)
);
$this->add_responsive_control(
'columns',
array(
'label' => esc_html__( 'Columns', 'woodmart' ),
'description' => esc_html__( 'Number of columns in the grid.', 'woodmart' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 3,
),
'size_units' => '',
'range' => array(
'px' => array(
'min' => 1,
'max' => 6,
'step' => 1,
),
),
'devices' => array( 'desktop', 'tablet', 'mobile' ),
'classes' => 'wd-hide-custom-breakpoints',
'condition' => array(
'view' => array( 'grid', 'masonry' ),
),
)
);
$this->add_control(
'rounding_size',
array(
'label' => esc_html__( 'Rounding', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'' => esc_html__( 'Inherit', 'woodmart' ),
'0' => esc_html__( '0', 'woodmart' ),
'5' => esc_html__( '5', 'woodmart' ),
'8' => esc_html__( '8', 'woodmart' ),
'12' => esc_html__( '12', 'woodmart' ),
'custom' => esc_html__( 'Custom', 'woodmart' ),
),
'default' => '',
'selectors' => array(
'{{WRAPPER}}' => '--wd-brd-radius: {{VALUE}}px;',
),
)
);
$this->add_control(
'custom_rounding_size',
array(
'label' => esc_html__( 'Custom rounding', 'woodmart' ),
'type' => Controls_Manager::SLIDER,
'size_units' => array( '%', 'px' ),
'range' => array(
'px' => array(
'min' => 1,
'max' => 300,
'step' => 1,
),
'%' => array(
'min' => 1,
'max' => 100,
'step' => 1,
),
),
'selectors' => array(
'{{WRAPPER}}' => '--wd-brd-radius: {{SIZE}}{{UNIT}};',
),
'condition' => array(
'rounding_size' => array( 'custom' ),
),
)
);
$this->add_control(
'horizontal_align',
array(
'label' => esc_html__( 'Horizontal align', 'woodmart' ),
'type' => 'wd_buttons',
'options' => array(
'left' => array(
'title' => esc_html__( 'Left', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/horizontal/left.png',
),
'center' => array(
'title' => esc_html__( 'Center', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/horizontal/center.png',
),
'right' => array(
'title' => esc_html__( 'Right', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/horizontal/right.png',
),
),
'default' => 'center',
'condition' => array(
'view' => array( 'grid', 'masonry', 'carousel' ),
),
)
);
$this->add_control(
'vertical_align',
array(
'label' => esc_html__( 'Vertical align', 'woodmart' ),
'type' => 'wd_buttons',
'options' => array(
'top' => array(
'title' => esc_html__( 'Top', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/vertical/top.png',
),
'middle' => array(
'title' => esc_html__( 'Middle', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/vertical/middle.png',
),
'bottom' => array(
'title' => esc_html__( 'Bottom', 'woodmart' ),
'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/vertical/bottom.png',
),
),
'default' => 'middle',
'condition' => array(
'view' => array( 'grid', 'masonry', 'carousel' ),
),
)
);
$this->end_controls_section();
}
/**
* Render the widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
*
* @access protected
*/
protected function render() {
$default_settings = array(
'ids' => '',
'slides_per_view' => array( 'size' => 4 ),
'slides_per_view_tablet' => array( 'size' => '' ),
'slides_per_view_mobile' => array( 'size' => '' ),
'columns' => array( 'size' => 3 ),
'columns_tablet' => array( 'size' => '' ),
'columns_mobile' => array( 'size' => '' ),
'link' => '',
'spacing' => 0,
'on_click' => 'lightbox',
'target_blank' => false,
'custom_links' => '',
'view' => 'grid',
'caption' => false,
'lazy_loading' => 'no',
'horizontal_align' => 'center',
'vertical_align' => 'middle',
'custom_sizes' => apply_filters( 'woodmart_images_gallery_shortcode_custom_sizes', false ),
);
$settings = wp_parse_args( $this->get_settings_for_display(), array_merge( woodmart_get_carousel_atts(), $default_settings ) );
$settings['columns'] = isset( $settings['columns']['size'] ) ? $settings['columns']['size'] : 3;
$settings['slides_per_view'] = isset( $settings['slides_per_view']['size'] ) ? $settings['slides_per_view']['size'] : 3;
$this->add_render_attribute(
array(
'wrapper' => array(
'class' => array(
'wd-images-gallery',
),
),
'item' => array(
'class' => array(
'wd-gallery-item',
),
),
)
);
$v_align_value = array(
'top' => 'flex-start',
'middle' => 'center',
'bottom' => 'flex-end',
);
if ( isset( $v_align_value[ $settings['vertical_align'] ] ) ) {
$this->add_render_attribute( 'wrapper', 'style', '--wd-align-items:' . $v_align_value[ $settings['vertical_align'] ] . ';' );
}
if ( ! empty( $settings['horizontal_align'] ) ) {
$this->add_render_attribute( 'wrapper', 'style', '--wd-justify-content:' . $settings['horizontal_align'] . ';' );
}
$carousel_atts = '';
if ( 'lightbox' === $settings['on_click'] ) {
woodmart_enqueue_js_library( 'photoswipe-bundle' );
woodmart_enqueue_inline_style( 'photoswipe' );
woodmart_enqueue_js_script( 'photoswipe-images' );
$this->add_render_attribute( 'wrapper', 'class', 'photoswipe-images' );
}
if ( 'masonry' === $settings['view'] ) {
$this->add_render_attribute( 'gallery', 'class', 'wd-masonry' );
wp_enqueue_script( 'imagesloaded' );
woodmart_enqueue_js_library( 'isotope-bundle' );
woodmart_enqueue_js_script( 'image-gallery-element' );
}
if ( 'justified' === $settings['view'] ) {
$this->add_render_attribute( 'gallery', 'class', 'wd-justified' );
woodmart_enqueue_js_library( 'justified' );
woodmart_enqueue_inline_style( 'justified' );
woodmart_enqueue_js_script( 'image-gallery-element' );
}
if ( 'carousel' === $settings['view'] ) {
woodmart_enqueue_js_library( 'swiper' );
woodmart_enqueue_js_script( 'swiper-carousel' );
woodmart_enqueue_inline_style( 'swiper' );
if ( ! empty( $settings['slides_per_view_tablet']['size'] ) || ! empty( $settings['slides_per_view_mobile']['size'] ) ) {
$settings['custom_sizes'] = array(
'desktop' => $settings['slides_per_view'],
'tablet' => $settings['slides_per_view_tablet']['size'],
'mobile' => $settings['slides_per_view_mobile']['size'],
);
}
$carousel_atts = woodmart_get_carousel_attributes( $settings );
$this->add_render_attribute( 'wrapper', 'class', 'wd-carousel-container' );
$this->add_render_attribute( 'gallery', 'class', 'wd-carousel wd-grid' );
$this->add_render_attribute( 'item', 'class', 'wd-carousel-item' );
if ( 'yes' === $settings['scroll_carousel_init'] ) {
woodmart_enqueue_js_library( 'waypoints' );
$this->add_render_attribute( 'gallery', 'class', 'scroll-init' );
}
if ( woodmart_get_opt( 'disable_owl_mobile_devices' ) ) {
$this->add_render_attribute( 'wrapper', 'class', 'wd-carousel-dis-mb wd-off-md wd-off-sm' );
}
}
if ( 'grid' === $settings['view'] || 'masonry' === $settings['view'] ) {
if ( 'masonry' === $settings['view'] ) {
$this->add_render_attribute( 'gallery', 'class', 'wd-grid-f-col' );
} else {
$this->add_render_attribute( 'gallery', 'class', 'wd-grid-g' );
}
$this->add_render_attribute( 'item', 'class', 'wd-col' );
$this->add_render_attribute( 'gallery', 'style', woodmart_get_grid_attrs( $settings ) );
}
if ( 'yes' === $settings['lazy_loading'] ) {
woodmart_lazy_loading_init( true );
woodmart_enqueue_inline_style( 'lazy-loading' );
}
if ( count( $settings['ids'] ) < 1 ) {
return;
}
woodmart_enqueue_inline_style( 'image-gallery' );
?>
<div <?php echo $this->get_render_attribute_string( 'wrapper' ); ?>>
<?php if ( 'carousel' === $settings['view'] ) : ?>
<div class="wd-carousel-inner">
<?php endif; ?>
<div <?php echo $this->get_render_attribute_string( 'gallery' ); ?> <?php echo 'carousel' === $settings['view'] ? $carousel_atts : ''; ?>>
<?php if ( 'carousel' === $settings['view'] ) : ?>
<div class="wd-carousel-wrap">
<?php endif; ?>
<?php foreach ( $settings['ids'] as $index => $image ) : ?>
<?php
$image_data = wp_get_attachment_image_src( $image['id'], 'full' );
if ( ! $image_data ) {
continue;
}
$link = $image_data[0];
if ( apply_filters( 'woodmart_image_gallery_caption', false ) ) {
$title = wp_get_attachment_caption( $image['id'] );
} else {
$attachment = get_post( $image['id'] );
$title = trim( wp_strip_all_tags( $attachment->post_title ) );
}
if ( 'links' === $settings['on_click'] ) {
$custom_links = explode( "\n", $settings['custom_links'] );
$link = isset( $custom_links[ $index ] ) ? $custom_links[ $index ] : '';
}
if ( 'lightbox' === $settings['on_click'] ) {
$index++;
}
$link_attrs = woodmart_get_link_attrs(
array(
'url' => $link,
'data' => ' data-width="' . esc_attr( $image_data[1] ) . '" data-height="' . esc_attr( $image_data[2] ) . '" data-index="' . esc_attr( $index ) . '" data-elementor-open-lightbox="no"',
)
);
if ( $settings['target_blank'] ) {
$link_attrs .= ' target="_blank"';
}
if ( $settings['caption'] ) {
$link_attrs .= ' title="' . $title . '"';
}
?>
<div <?php echo $this->get_render_attribute_string( 'item' ); ?>>
<?php if ( 'none' !== $settings['on_click'] ) : ?>
<a <?php echo $link_attrs; ?>>
<?php endif ?>
<?php
echo woodmart_otf_get_image_html(
$image['id'],
$settings['ids_size'],
$settings['ids_custom_dimension'],
array(
'alt' => Control_Media::get_image_alt( $image )
)
);
?>
<?php if ( 'none' !== $settings['on_click'] ) : ?>
</a>
<?php endif ?>
</div>
<?php endforeach; ?>
<?php if ( 'carousel' === $settings['view'] ) : ?>
</div>
<?php endif; ?>
</div>
<?php if ( 'carousel' === $settings['view'] ) : ?>
<?php if ( 'yes' !== $settings['hide_prev_next_buttons'] ) : ?>
<?php
if ( ! empty( $settings['carousel_arrows_position'] ) ) {
$nav_classes = ' wd-pos-' . $settings['carousel_arrows_position'];
} else {
$nav_classes = ' wd-pos-' . woodmart_get_opt( 'carousel_arrows_position', 'sep' );
}
$arrows_hover_style = woodmart_get_opt( 'carousel_arrows_hover_style', '1' );
if ( 'disable' !== $arrows_hover_style ) {
$nav_classes .= ' wd-hover-' . $arrows_hover_style;
}
woodmart_get_carousel_nav_template( $nav_classes );
?>
<?php endif; ?>
</div>
<?php woodmart_get_carousel_pagination_template( $settings ); ?>
<?php woodmart_get_carousel_scrollbar_template( $settings ); ?>
<?php endif; ?>
</div>
<?php
}
}
Plugin::instance()->widgets_manager->register( new Images_Gallery() );