Sindbad~EG File Manager
<?php
namespace CoursectorElementor\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Scheme_Color;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Elementor Blog Posts
*
* Elementor widget for blog posts
*
* @since 1.0.0
*/
class Coursector_Slider_Room extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'coursector-slider-room';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Fullscreen 3D Room Slider', 'coursector-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-post-slider';
}
/**
* 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-fullscreen' ];
}
/**
* 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 [ 'imagesloaded', 'anime', '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(
'slides',
[
'label' => __( 'Slides', 'coursector-elementor' ),
'type' => Controls_Manager::REPEATER,
'fields' => [
[
'name' => 'slide_image',
'label' => __( 'Image (max. 8)', 'coursector-elementor' ),
'type' => Controls_Manager::GALLERY,
'default' => [],
],
[
'name' => 'slide_title',
'label' => __( 'Title', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Title' , 'coursector-elementor' ),
],
[
'name' => 'slide_description',
'label' => __( 'Description', 'coursector-elementor' ),
'type' => Controls_Manager::TEXTAREA,
],
[
'name' => 'slide_link_title',
'label' => __( 'Link Title', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'View Project' , 'coursector-elementor' ),
],
[
'name' => 'slide_link',
'label' => __( 'Link URL', 'coursector-elementor' ),
'type' => Controls_Manager::URL,
'default' => [
'url' => '',
'is_external' => '',
],
'show_external' => true,
],
],
'title_field' => '{{{ slide_title }}}',
]
);
$this->add_control(
'overlay_background_color',
[
'label' => __( 'Background overlay Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => 'rgba(0,0,0,0.2)',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .bg_overlay' => 'background: {{VALUE}}',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_title_style',
array(
'label' => esc_html__( 'Title', 'coursector-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'title_color',
[
'label' => __( 'Title Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__name' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_room_slider_wrapper h2.slide__name',
]
);
$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(
'description_color',
[
'label' => __( 'Description Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__title' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'description_typography',
'label' => __( 'Description Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_room_slider_wrapper .slide__title',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_button_style',
array(
'label' => esc_html__( 'Button', 'coursector-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'button_font_color',
[
'label' => __( 'Button Font Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide .slide__date .button' => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'button_background_color',
[
'label' => __( 'Button background Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#1c58f6',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__date .button' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'button_border_color',
[
'label' => __( 'Button Border Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#1c58f6',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__date a.button' => 'border-color: {{VALUE}}',
],
]
);
$this->add_control(
'button_hover_bg_color',
[
'label' => __( 'Button Hover Background Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__date a.button:hover' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'button_hover_font_color',
[
'label' => __( 'Button Hover Font Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__date a.button:hover' => 'color: {{VALUE}}',
],
]
);
$this->add_control(
'button_hover_border_color',
[
'label' => __( 'Button Hover Border Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__date a.button:hover' => 'border-color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'button_typography',
'label' => __( 'Button Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} div.tg_room_slider_wrapper .slide__date a.button',
]
);
$this->add_control(
'button_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' => 25,
],
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .slide__date a.button' => 'border-radius: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_control(
'nav_color',
[
'label' => __( 'Navigation Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_room_slider_wrapper .btn--nav' => 'color: {{VALUE}}',
],
]
);
$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/slider-room/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 '';
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists