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_Property_Clip extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'coursector-slider-property-clip';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Property Clip Slider', 'coursector-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-post-excerpt';
}
/**
* 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 [ '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(
'image_size',
[
'label' => __( 'Image Size', 'coursector-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'large',
'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' ),
],
]
);
$this->add_control(
'image_align',
[
'label' => __( 'Image Alignment', 'coursector-elementor' ),
'type' => Controls_Manager::SELECT,
'default' => 'left',
'options' => [
'left' => __( 'Left', 'coursector-elementor' ),
'right' => __( 'Right', 'coursector-elementor' ),
],
]
);
$this->add_responsive_control(
'width',
[
'label' => __( 'Width', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 100,
'unit' => '%',
],
'range' => [
'px' => [
'min' => 5,
'max' => 2000,
'step' => 5,
]
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper' => 'width: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_responsive_control(
'height',
[
'label' => __( 'Height', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 500,
'unit' => 'px',
],
'range' => [
'px' => [
'min' => 5,
'max' => 2000,
'step' => 5,
]
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper' => 'height: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'title',
[
'label' => __( 'Title', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
'placeholder' => __( 'Title', 'coursector-elementor' ),
]
);
$this->add_control(
'subtitle',
[
'label' => __( 'Sub Title', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
'placeholder' => __( 'Sub Title', 'coursector-elementor' ),
]
);
$this->add_control(
'description',
[
'label' => __( 'Description', 'coursector-elementor' ),
'type' => Controls_Manager::WYSIWYG,
'default' => __( 'Default description', '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(
'content_background',
[
'label' => __( 'Content Background', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#f0f0f0',
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper.intro .content' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'title_color',
[
'label' => __( 'Title Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper.intro .content > div h1' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_slider_property_clip_wrapper.intro .content div h1',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_subtitle_style',
array(
'label' => esc_html__( 'Sub Title', 'coursector-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_control(
'subtitle_color',
[
'label' => __( 'Sub Title Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper.intro .content span' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'subtitle_typography',
'label' => __( 'Sub Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_slider_property_clip_wrapper .content span',
]
);
$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_slider_property_clip_wrapper.intro .content > div p' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'description_typography',
'label' => __( 'Description Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .tg_slider_property_clip_wrapper.intro .content > div',
]
);
$this->add_control(
'link_color',
[
'label' => __( 'Link Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#222222',
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper.intro .content > div a' => 'color: {{VALUE}}',
'{{WRAPPER}} .tg_slider_property_clip_wrapper.intro div.content a' => 'border-color: {{VALUE}}',
],
]
);
$this->add_control(
'pagination_color',
[
'label' => __( 'Pagination Background Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .tg_slider_property_clip_wrapper.intro nav a' => 'background: {{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-property-clip/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