Sindbad~EG File Manager
<?php
namespace CoursectorElementor\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Elementor Music Player
*
* Elementor widget for music player
*
* @since 1.0.0
*/
class Coursector_Music_Player extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'coursector-music-player';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Music Player', 'coursector-elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-headphones';
}
/**
* 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 [ 'swiper', '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' => __( 'Songs', 'coursector-elementor' ),
'type' => Controls_Manager::REPEATER,
'fields' => [
[
'name' => 'slide_image',
'label' => __( 'Poster', 'coursector-elementor' ),
'type' => Controls_Manager::MEDIA,
'label_block' => true,
],
[
'name' => 'slide_audio',
'label' => __( 'Audio', 'coursector-elementor' ),
'description' => __( 'Enter audio file URL in mp3 format for this item (optional)', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
],
[
'name' => 'slide_title',
'label' => __( 'Title', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Title' , 'coursector-elementor' ),
],
[
'name' => 'slide_subtitle',
'label' => __( 'Sub Title', 'coursector-elementor' ),
'type' => Controls_Manager::TEXT,
],
],
'title_field' => '{{{ slide_title }}}',
]
);
$this->add_responsive_control(
'height',
[
'label' => __( 'Height (in px)', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 580,
],
'range' => [
'px' => [
'min' => 400,
'max' => 1000,
'step' => 5,
]
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .music_player .player' => 'height: {{SIZE}}{{UNIT}}',
],
]
);
$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}} .music_player .player' => 'border-radius: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Box_Shadow::get_type(),
[
'name' => 'box_shadow',
'label' => __( 'Shadow', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .music_player .player',
]
);
$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}} .music_player .player h2.player__title' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => __( 'Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .music_player .player .player__title',
]
);
$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' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .music_player .player h3.player__artist' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'subtitle_typography',
'label' => __( 'Sub Title Typography', 'coursector-elementor' ),
'selector' => '{{WRAPPER}} .music_player .player .player__artist',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_icon_style',
array(
'label' => esc_html__( 'Icon', 'coursector-elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_responsive_control(
'icon_font_size',
[
'label' => __( 'Icon Size', 'coursector-elementor' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 18,
],
'range' => [
'px' => [
'min' => 8,
'max' => 40,
'step' => 1,
],
],
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .music_player .player .player__controls > a' => 'font-size: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_control(
'icon_color',
[
'label' => __( 'Icon Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .music_player .player .player__controls > a' => 'color: {{VALUE}}',
'{{WRAPPER}} .music_player .player .player__time' => 'color: {{VALUE}}',
'{{WRAPPER}} .music_player .player .player__scrubber:before' => 'background: {{VALUE}}',
'{{WRAPPER}} .music_player .player .player__scrubber__handle' => 'background: {{VALUE}}',
],
]
);
$this->add_control(
'timer_color',
[
'label' => __( 'Timer Color', 'coursector-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#ffffff',
'selectors' => [
'{{WRAPPER}} .music_player .player .player__scrubber__fill' => '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/music-player/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