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_Multi_Layouts extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'coursector-slider-multi-layouts';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Multi Layouts 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' ];
}
/**
* 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 [ 'anime', 'imagesloaded', 'mls', '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', 'coursector-elementor' ),
'type' => Controls_Manager::GALLERY,
'default' => [],
],
[
'name' => 'image_size',
'label' => __( 'Image Size', 'coursector-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'full',
'options' => [
'medium_large' => __( 'Medium (default 768px x 768px max)', 'coursector-elementor' ),
'large' => __( 'Large (default 1024px x 1024px max)', 'coursector-elementor' ),
'full' => __( 'Original image resolution', 'coursector-elementor' ),
],
],
[
'name' => 'slide_layout',
'label' => __( 'Layout', 'coursector-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 1,
'options' => [
1 => __( 'Layout 1', 'coursector-elementor' ),
2 => __( 'Layout 2', 'coursector-elementor' ),
3 => __( 'Layout 3', 'coursector-elementor' ),
4 => __( 'Layout 4', 'coursector-elementor' ),
5 => __( 'Layout 5', 'coursector-elementor' ),
6 => __( 'Layout 6', 'coursector-elementor' ),
7 => __( 'Layout 7', 'coursector-elementor' ),
],
],
[
'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(
'width',
[
'label' => __( 'Width', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 100,
'unit' => '%',
],
'range' => [
'px' => [
'min' => 100,
'max' => 1600,
'step' => 5,
],
'%' => [
'min' => 10,
'max' => 100,
],
],
'size_units' => [ 'px', '%' ],
'selectors' => [
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper.slideshow' => 'width: {{SIZE}}{{UNIT}} !important',
],
]
);
$this->add_control(
'height',
[
'label' => __( 'Height', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 800,
'unit' => 'px',
],
'range' => [
'px' => [
'min' => 100,
'max' => 1000,
'step' => 5,
],
'%' => [
'min' => 0,
'max' => 100,
],
],
'size_units' => [ 'px', '%' ],
]
);
$this->add_control(
'opacity',
[
'label' => __( 'Images Opacity', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 0.5,
'unit' => 'px',
],
'range' => [
'px' => [
'min' => 0.1,
'max' => 1,
'step' => 0.1,
],
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper .slide-imgwrap' => 'opacity: {{SIZE}}',
],
]
);
$this->add_control(
'align',
[
'label' => __( 'Alignment', 'coursector-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'center',
'options' => [
'left' => __( 'Left', 'coursector-elementor' ),
'center' => __( 'Center', 'coursector-elementor' ),
'right' => __( 'Right', 'coursector-elementor' ),
],
]
);
$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' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper .slide__title-main' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_multi_layouts_slider_wrapper h2.slide__title-main',
]
);
$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' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper .slide__title-sub' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'description_typography',
'label' => __( 'Description Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_multi_layouts_slider_wrapper p.slide__title-sub',
]
);
$this->add_control(
'link_font_color',
[
'label' => __( 'Link Font Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#1C58F6',
'selectors' => [
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper .slide__title .slide__title-sub .tg_multi_layouts_slide_link' => 'color: {{VALUE}}',
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper .slide__title p.slide__title-sub .tg_multi_layouts_slide_link' => 'border-color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'link_typography',
'label' => __( 'Link Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} div.tg_multi_layouts_slider_wrapper .slide__title .slide__title-sub .tg_multi_layouts_slide_link',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_navigation_style',
array(
'label' => esc_html__( 'Navigation', 'coursector-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'nav_color',
[
'label' => __( 'Navigation Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_multi_layouts_slider_wrapper .btn' => 'color: {{VALUE}}',
'.js {{WRAPPER}} .tg_multi_layouts_slider_wrapper::after' => 'border-top-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-multi-layouts/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