Current File : /home/escuelai/public_html/wp-content/plugins/coursector-elementor/widgets/gallery-masonry.php |
<?php
namespace CoursectorElementor\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Elementor Blog Posts
*
* Elementor widget for blog posts
*
* @since 1.0.0
*/
class Coursector_Gallery_Masonry extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'coursector-gallery-masonry';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Masonry Gallery', 'coursector-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-gallery-masonry';
}
/**
* Retrieve the list of categories the widget belongs to.
*
* Used to determine where to display the widget in the editor.
*
* Note that currently Elementor supports only one category.
* When multiple categories passed, Elementor uses the first one.
*
* @since 1.0.0
*
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'coursector-theme-widgets-category' ];
}
/**
* Retrieve the list of scripts the widget depended on.
*
* Used to set scripts dependencies required to run the widget.
*
* @since 1.0.0
*
* @access public
*
* @return array Widget scripts dependencies.
*/
public function get_script_depends() {
return [ 'tilt', 'masonry', 'coursector-elementor' ];
}
/**
* Register the 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(
'section_content',
[
'label' => __( 'Content', 'coursector-elementor' ),
]
);
$this->add_control(
'gallery',
[
'label' => __( 'Add Images', 'coursector-elementor' ),
'type' => Controls_Manager::GALLERY,
'default' => [],
]
);
$this->add_control(
'columns',
[
'label' => __( 'Columns', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 3,
],
'range' => [
'px' => [
'min' => 2,
'max' => 5,
'step' => 1,
]
],
]
);
$this->add_control(
'spacing',
[
'label' => __( 'Column Spacing', 'coursector-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'coursector-elementor' ),
'label_off' => __( 'No', 'coursector-elementor' ),
'return_value' => 'yes',
]
);
$this->add_control(
'border',
[
'label' => __( 'Border Width', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 0,
],
'range' => [
'px' => [
'min' => 0,
'max' => 40,
'step' => 1,
],
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .gallery_grid_content_wrapper .gallery_grid_item' => 'border-width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_control(
'border_color',
[
'label' => __( 'Border Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .gallery_grid_content_wrapper div.gallery_grid_item' => 'border-color: {{VALUE}}',
],
]
);
$this->add_control(
'border_radius',
[
'label' => __( 'Border Radius', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 25,
'step' => 1,
],
],
'default' => [
'unit' => 'px',
'size' => 5,
],
'selectors' => [
'{{WRAPPER}} .gallery_grid_content_wrapper div.gallery_grid_item' => 'border-radius: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_control(
'hover_effect',
[
'label' => __( 'Hover Effect', 'coursector-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'coursector-elementor' ),
'label_off' => __( 'No', 'coursector-elementor' ),
'return_value' => 'yes',
]
);
$this->add_control(
'show_title',
[
'label' => __( 'Show Title on Hover', 'coursector-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'coursector-elementor' ),
'label_off' => __( 'No', 'coursector-elementor' ),
'return_value' => 'yes',
]
);
$this->add_control(
'lightbox',
[
'label' => __( 'Image Lightbox', 'coursector-elementor' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'coursector-elementor' ),
'label_off' => __( 'No', 'coursector-elementor' ),
'return_value' => 'yes',
]
);
$this->add_control(
'lightbox_content',
[
'label' => __( 'Lightbox Content', 'coursector-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'title',
'options' => [
'title' => __( 'Title', 'coursector-elementor' ),
'title_caption' => __( 'Title and Caption', 'coursector-elementor' ),
'none' => __( 'None', 'coursector-elementor' ),
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_content_style',
array(
'label' => esc_html__( 'Content', 'coursector-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'background_overlay',
[
'label' => __( 'Background Overlay', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => 'rgba(0,0,0,0.2)',
'selectors' => [
'{{WRAPPER}} .gallery_grid_content_wrapper .gallery_grid_item:hover .bg_overlay' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'title_color',
[
'label' => __( 'Title Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .gallery_grid_content_wrapper .gallery_grid_item:hover .tg_gallery_grid_title' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .gallery_grid_content_wrapper .gallery_grid_item .tg_gallery_grid_title',
]
);
$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() {
include(COURSECTOR_ELEMENTOR_PATH.'templates/gallery-masonry/index.php');
}
/**
* Render the widget output in the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 1.0.0
*
* @access protected
*/
protected function _content_template() {
return '';
}
}