403Webshell
Server IP : 198.38.94.67  /  Your IP : 216.73.217.178
Web Server : LiteSpeed
System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
User : azfilmst ( 1070)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/azfilmst/public_html/wp-content/plugins/haru-frames/includes/widgets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/azfilmst/public_html/wp-content/plugins/haru-frames/includes/widgets/romeo-slideshow.php
<?php
/** 
 * @package    HaruTheme/Haru Frames
 * @version    1.0.0
 * @author     Administrator <admin@harutheme.com>
 * @copyright  Copyright (c) 2017, HaruTheme
 * @license    http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
 * @link       http://harutheme.com
*/

namespace Haru_Frames\Widgets;

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly.
}

use \Elementor\Widget_Base;
use \Elementor\Controls_Manager;
use \Elementor\Group_Control_Background;
use \Elementor\Group_Control_Border;
use \Elementor\Group_Control_Box_Shadow;
use \Elementor\Group_Control_Image_Size;
use \Elementor\Group_Control_Typography;
use \Elementor\Repeater;
use \Elementor\Utils;
use \Elementor\Plugin;
use \Elementor\Icons_Manager;
use \Haru_Frames\Classes\Helper as ControlsHelper;
use \Haru_Frames\Classes\Haru_Template;

if ( ! class_exists( 'Haru_Frames_Romeo_Slideshow_Widget' ) ) {
    class Haru_Frames_Romeo_Slideshow_Widget extends Widget_Base {

        public function get_name() {
            return 'haru-romeo-slideshow';
        }

        public function get_title() {
            return esc_html__( 'Haru Romeo Slideshow', 'haru-frames' );
        }

        public function get_icon() {
            return 'eicon-video-playlist';
        }

        public function get_categories() {
            return [ 'haru-elements' ];
        }

        public function get_keywords() {
            return [
                'romeo',
                'video',
                'videos',
                'slideshow',
                'video slideshow',
                'videos slideshow',
                'custom videos',
            ];
        }

        public function get_custom_help_url() {
            return 'https://document.harutheme.com/elementor/';
        }

        public function get_style_depends() {
            return [ 'menu-animate' ];
        }

        protected function register_controls() {

            $this->start_controls_section(
                'content_section',
                [
                    'label'     => esc_html__( 'Content', 'haru-frames' ),
                    'tab'       => Controls_Manager::TAB_CONTENT,
                ]
            );

            $this->add_control(
                'layout',
                [
                  'label' => __( 'Layout', 'haru-frames' ),
                  'type' => Controls_Manager::SELECT,
                  'default' => 'boxed',
                  'options' => [
                    'boxed'      => __( 'Boxed', 'haru-frames' ),
                    'fullscreen'    => __( 'Fullscreen', 'haru-frames' ),
                  ]
                ]
            );

            $this->add_control(
                'source_type',
                [
                    'label' => __( 'Source Type', 'haru-frames' ),
                    'type' => Controls_Manager::SELECT,
                    'default' => 'haru_video',
                    'options' => [
                        'haru_video' => __( 'Videos', 'haru-frames' ),
                        'all_post_types'  => __( 'All Posts', 'haru-frames' ),
                        'gallery' => __( 'Gallery', 'haru-frames' ),
                        'videos' => __( 'Custom Videos', 'haru-frames' )
                    ],
                ]
            );

            // Video
            $this->add_control(
                'videos_ids',
                [
                    'label' => __( 'Search & Select', 'haru-frames' ),
                    'type' => Controls_Manager::SELECT2,
                    'options' => ControlsHelper::get_post_list('haru_video'),
                    'label_block' => true,
                    'multiple' => true,
                    'condition' => [
                        'source_type' => 'haru_video',
                    ],
                ]
            );

            $this->add_control(
                'orderby',
                [
                    'label' => __( 'Order By', 'haru-frames' ),
                    'type' => Controls_Manager::SELECT,
                    'options' => ControlsHelper::get_post_orderby_options(),
                    'default' => 'date',
                    'condition' => [
                        'source_type' => 'haru_video',
                    ],
                ]
            );

            $this->add_control(
                'order',
                [
                    'label' => __( 'Order', 'haru-frames' ),
                    'type' => Controls_Manager::SELECT,
                    'options' => [
                        'asc' => 'Ascending',
                        'desc' => 'Descending',
                    ],
                    'default' => 'desc',
                    'condition' => [
                        'source_type' => array( 'haru_video', 'all_post_types' ),
                    ],
                ]
            );

            // Posts
            $this->add_control(
                'slides_posts',
                [
                    'label' => __( 'Search & Select', 'haru-frames' ),
                    'type' => Controls_Manager::SELECT2,
                    'options' => ControlsHelper::get_post_list('post'),
                    'label_block' => true,
                    'multiple' => true,
                    'condition' => [
                        'source_type' => array( 'all_post_types' ),
                    ],
                ]
            );

            // Gallery
            $this->add_control(
                'slides_gallery',
                [
                    'label' => __( 'Slides', 'haru-frames' ),
                    'type' => Controls_Manager::GALLERY,
                    'condition' => [
                        'source_type' => 'gallery'
                    ]
                ]
            );

            // Videos
            $repeater = new Repeater();
            $repeater->add_control(
                'video_title',
                [
                    'label' => __( 'Title', 'haru-frames' ),
                    'type' => Controls_Manager::TEXT,
                ]
            );

            $repeater->add_control(
                'video_media',
                [
                    'label' => __( 'Choose File', 'haru-frames' ),
                    'type' => Controls_Manager::MEDIA,
                    'media_type' => 'video',
                ]
            );

            $repeater->add_control(
                'video_permalink',
                [
                    'label' => __( 'Permalink', 'haru-frames' ),
                    'type' => Controls_Manager::URL,
                ]
            );

            $this->add_control(
                'videos',
                [
                    'label' => __( 'Videos', 'haru-frames' ),
                    'type' => Controls_Manager::REPEATER,
                    'fields' => $repeater->get_controls(),
                    'default' => [
                        
                    ],
                    'title_field' => '{{{ video_title }}}',
                    'condition' => [
                        'source_type' => 'videos'
                    ]
                ]
            );

            $this->add_control(
                'el_class',
                [
                    'label' => __( 'CSS Classes', 'haru-frames' ),
                    'type' => Controls_Manager::TEXT,
                    'default' => '',
                    'title' => __( 'Add your custom class WITHOUT the dot. e.g: my-class', 'haru-frames' ),
                ]
            );

            $this->end_controls_section();

            $this->start_controls_section(
                'section_content_counter',
                [
                    'label'     => __( 'Counter', 'haru-frames' ),
                    'tab'       => Controls_Manager::TAB_CONTENT,
                ]
            );

            $this->add_control(
                'counter_text',
                [
                    'label' => __( 'Counter Text', 'haru-frames' ),
                    'type' => Controls_Manager::TEXT,
                    'default' => esc_html__( 'Project' , 'haru-frames' ),
                    'label_block' => true,
                ]
            );

            $this->end_controls_section();

            $this->start_controls_section(
                'section_content_button',
                [
                    'label'     => __( 'View All Button', 'haru-frames' ),
                    'tab'       => Controls_Manager::TAB_CONTENT,
                ]
            );

            $this->add_control(
                'button_text',
                [
                    'label' => __( 'Button Text', 'haru-frames' ),
                    'type' => Controls_Manager::TEXT,
                    'default' => esc_html__( 'Click Here' , 'haru-frames' ),
                    'label_block' => true,
                ]
            );

            $this->add_control(
                'button_link',
                [
                    'label' => __( 'Button Link', 'haru-frames' ),
                    'type' => Controls_Manager::URL,
                    'placeholder' => __( 'https://your-link.com', 'haru-frames' ),
                    'default' => [
                        'url' => '#',
                    ],
                ]
            );

            $this->end_controls_section();

            $this->start_controls_section(
                'section_content_social',
                [
                    'label'     => __( 'Socials', 'haru-frames' ),
                    'tab'       => Controls_Manager::TAB_CONTENT,
                ]
            );

            $this->add_control(
                'social_title',
                [
                    'label' => __( 'Social Title', 'haru-frames' ),
                    'type' => Controls_Manager::TEXT,
                    'default' => esc_html__( 'Follow us' , 'haru-frames' ),
                    'label_block' => true,
                ]
            );

            $social = new Repeater();

            $social->add_control(
                'list_title', [
                    'label' => esc_html__( 'Title', 'haru-frames' ),
                    'type' => Controls_Manager::TEXT,
                    'default' => esc_html__( 'List Title' , 'haru-frames' ),
                    'label_block' => true,
                ]
            );

            $social->add_control(
                'list_icon', [
                    'label' => esc_html__( 'Icon', 'haru-frames' ),
                    'type' => Controls_Manager::ICONS,
                    'default' => [
                        'value' => 'fas fa-star',
                        'library' => 'solid',
                    ],
                    'label_block' => true,
                ]
            );

            $social->add_control(
                'list_content', [
                    'label' => esc_html__( 'Link', 'haru-frames' ),
                    'type' => Controls_Manager::URL,
                    'placeholder' => __( 'https://your-link.com', 'haru-frames' ),
                    'show_external' => true,
                    'default' => [
                        'url' => '',
                        'is_external' => true,
                        'nofollow' => true,
                    ],
                ]
            );

            $this->add_control(
                'list',
                [
                    'label' => esc_html__( 'Social List', 'haru-frames' ),
                    'type' => Controls_Manager::REPEATER,
                    'fields' => $social->get_controls(),
                    'default' => [
                        [
                            'list_title' => esc_html__( 'Title #1', 'haru-frames' ),
                            'list_icon' => esc_html__( 'Item icon. Click to select icon', 'haru-frames' ),
                            'list_content' => esc_html__( 'Item content. Click the edit button to change this text.', 'haru-frames' ),
                        ],
                        [
                            'list_title' => esc_html__( 'Title #2', 'haru-frames' ),
                            'list_icon' => esc_html__( 'Item icon. Click to select icon', 'haru-frames' ),
                            'list_content' => esc_html__( 'Item content. Click the edit button to change this text.', 'haru-frames' ),
                        ],
                    ],
                    'title_field' => '{{{ list_title }}}',
                ]
            );

            $this->end_controls_section();

            $this->start_controls_section(
                'slide_section',
                [
                    'label' => esc_html__( 'Slide Options', 'haru-frames' ),
                    'tab' => Controls_Manager::TAB_STYLE,
                ]
            );

            $this->add_control(
                'slider_background_color',
                [
                    'label'     => __( 'Background Color', 'haru-frames' ),
                    'type'      => Controls_Manager::COLOR,
                    'default'   => '#000000',
                    'selectors' => [
                        '{{WRAPPER}} .haru-romeo-slideshow' => 'background-color: {{VALUE}}',
                    ],
                    'condition' => [
                        'layout' => [ 'boxed' ],
                    ],
                    
                ]
            );

            $this->add_control(
                'image_overlay_color',
                [
                    'label'     => __( 'Images Overlay Color', 'haru-frames' ),
                    'type'      => Controls_Manager::COLOR,
                    'default'   => 'rgba(0,0,0,0.2)',
                    'selectors' => [
                        '{{WRAPPER}} .haru-romeo-slideshow .slide-img:before' => 'background-color: {{VALUE}}',
                    ],
                    'separator' => 'after',
                ]
            );

            $this->add_group_control(
                Group_Control_Typography::get_type(),
                [
                    'name'      => 'title_typography',
                    'selector'  => '{{WRAPPER}} .haru-romeo-slideshow .slide-title a',
                    'separator' => 'before',
                ]
            );
            
            $this->add_control(
                'text_color_counter',
                [
                    'label'     => __( 'Counter Text Color', 'haru-frames' ),
                    'type'      => Controls_Manager::COLOR,
                    'default'   => '',
                    'selectors' => [
                        '{{WRAPPER}} .haru-romeo-slideshow .project-counter' => 'color: {{VALUE}}',
                    ],
                    
                ]
            );

            $this->add_control(
                'text_color_title',
                [
                    'label'     => __( 'Title Text Color', 'haru-frames' ),
                    'type'      => Controls_Manager::COLOR,
                    'default'   => '',
                    'selectors' => [
                        '{{WRAPPER}} .haru-romeo-slideshow .title-wrap .slide-title a' => 'color: {{VALUE}}',
                    ],
                    
                ]
            );

            $this->add_control(
                'text_color_button',
                [
                    'label'     => __( 'Button Text Color', 'haru-frames' ),
                    'type'      => Controls_Manager::COLOR,
                    'default'   => '',
                    'selectors' => [
                        '{{WRAPPER}} .haru-romeo-slideshow .view-all-btn' => 'color: {{VALUE}}; border-bottom: 1px solid {{VALUE}}',
                    ],
                    
                ]
            );

            $this->add_control(
                'bullets_color',
                [
                    'label'     => __( 'Bullets Color', 'haru-frames' ),
                    'type'      => Controls_Manager::COLOR,
                    'default'   => '',
                    'selectors' => [
                        '{{WRAPPER}} .haru-romeo-slideshow .bullet-wrap .slide-bullet:after' => 'background-color: {{VALUE}}',
                        '{{WRAPPER}} .haru-romeo-slideshow .bullet-wrap .slide-bullet:before' => 'border: 1px solid {{VALUE}}',
                    ],
                    
                ]
            );

            $this->end_controls_section();

        }

        protected function render() {
            $settings = $this->get_settings_for_display();

            $slider_type = 'images';
            if ( $settings['source_type'] == 'videos' )
                $slider_type = 'videos';

            $this->add_render_attribute( 'video', 'class', 'haru-romeo-slideshow' );

            $this->add_render_attribute( 'video', 'class', 'haru-romeo-slideshow--' . $settings['layout'] );

            $this->add_render_attribute( 'video', 'id', 'haru-romeo-slideshow' . rand() );

            $this->add_render_attribute( 'video', 'data-slider-type', $slider_type );
            $this->add_render_attribute( 'video', 'data-slider-layout', $settings['layout'] );
            $this->add_render_attribute( 'video', 'data-counter-index', '2' );

            if ( ! empty( $settings['el_class'] ) ) {
                $this->add_render_attribute( 'video', 'class', $settings['el_class'] );
            }

            ?>
            <?php if ( Plugin::$instance->editor->is_edit_mode() || Plugin::$instance->preview->is_preview_mode() ) : ?>
                <div class="haru-notice"><?php echo esc_html__( 'Please note layout or action may doesn\'t works on Preview Mode or Editor Mode but works fine on Frontend Mode.', 'haru-frames' ); ?></div>
            <?php endif; ?>

                <div <?php echo $this->get_render_attribute_string( 'video' ); ?>>
                    <?php //echo Haru_Template::haru_get_template( 'video-slideshow/video-slideshow.php', $settings ); ?>
                    <?php
                        $return = [];
                        if ( $settings['source_type'] == 'haru_video' || $settings['source_type'] == 'all_post_types' ) {
                            $post_ids = $settings['source_type'] == 'haru_video' ? $settings['videos_ids'] : $settings['slides_posts'];
                            $post_query = array(
                                'posts_per_page' => -1,
                                'post__in' => $post_ids,
                                'orderby' => $settings['orderby'],
                                'order' => $settings['order']
                            );

                            if ( $settings['source_type'] == 'haru_video' ) {
                                $post_query['post_type'] = 'haru_video';
                            } else {
                                $post_query['post_type'] = 'post';
                            }
                            
                            $the_query = new \WP_Query( $post_query );
                                    
                            if ( is_object( $the_query ) && $the_query->have_posts() ) :
                                while ( $the_query->have_posts() ) : $the_query->the_post();
                                    $return[] = array(
                                        'id' => (int) get_the_ID(),
                                        'caption'  => '',
                                        'title' => get_the_title( ),
                                        'src' => has_post_thumbnail() ? wp_get_attachment_image_src( get_post_thumbnail_id( (int) get_the_ID() ), 'full' )[0] : '',
                                        'permalink' => get_permalink( )
                                    );
                                endwhile;
                            endif;

                            wp_reset_query();
                        }

                        if ( $settings['source_type'] == 'gallery' ) {
                            if ( ! empty( $settings['slides_gallery'] ) ) {
                                foreach ( $settings['slides_gallery'] as $bulk_img ) {
                                    $return[] = array( 
                                        'caption'  => wp_get_attachment_caption( $bulk_img['id'] ),
                                        'title' => get_the_title( $bulk_img['id'] ),
                                        'src' => $bulk_img['url'],
                                        'permalink' => get_post_meta( $bulk_img['id'], 'ce_permalink', true )
                                    );
                                }  
                            }
                        }

                        if ( $settings['source_type'] == 'videos' ) {
                            $return = $settings['videos'];
                        }

                        $slides = $return;
                    ?>
                    <div class="slider-wrap">
                        <div class="images-wrap">
                            <?php
                                $aindex = 0;
                                if ( ! empty( $slides ) ): 
                                    foreach ( $slides as $slide ) :
                                        $extra_class = '';
                                        if ( $aindex == 2 ) {
                                            $extra_class = 'active';
                                        }
                            ?>
                                <div class="slide-img <?php echo esc_attr( $extra_class ) ?>">
                                    <?php if ( $settings['source_type'] != 'videos' ): ?>
                                        <img src="<?php echo esc_url( $slide['src'] ) ?>" alt="<?php echo esc_attr( $slide['title'] ); ?>" />
                                        <a href="<?php echo esc_url( $slide['permalink'] ) ?>" class="image-link"></a>
                                    <?php endif; ?>

                                    <?php if ( $settings['source_type'] == 'videos' ) : ?>
                                        <?php if ( $slide['video_media'] && is_array( $slide['video_media'] ) ): ?>
                                            <video src="<?php echo esc_url( $slide['video_media']['url'] ) ?>" type="<?php echo esc_attr( get_post_mime_type( $slide['video_media']['id'] ) ) ?>" muted webkit-playsinline playsinline loop <?php if ( $aindex == 2 ) echo 'autoplay'; ?>>
                                            </video>
                                        <?php endif; ?>
                                    <?php endif; ?>
                                </div>
                                <?php $aindex++; endforeach; ?>
                            <?php endif; ?>
                        </div>

                        <div class="title-wrap">
                            <?php
                                $aindex = 0;
                                if ( ! empty( $slides ) ): 
                                    foreach( $slides as $slide ): 
                                        $extra_class = '';
                                        if ( $aindex == 2 )
                                            $extra_class = 'active';
                                        
                                ?>
                                    <?php if ( $settings['source_type'] != 'videos' ) : ?>
                                    <div class="slide-title <?php echo esc_attr( $extra_class ) ?>" data-id="<?php echo esc_attr( $aindex ) ?>">
                                        <a href="<?php echo esc_url( $slide['permalink'] ) ?>"><span><?php echo esc_html( $slide['title'] ) ?></span></a>
                                    </div>
                                    <?php endif; ?>
                                    
                                    <?php if ( $settings['source_type'] == 'videos' ) : ?>
                                    <div class="slide-title <?php echo esc_attr( $extra_class ) ?>" data-id="<?php echo esc_attr( $aindex ) ?>">
                                        <a href="<?php echo esc_url( $slide['video_permalink']['url'] ) ?>"><span><?php echo esc_html( $slide['video_title'] ) ?></span></a>
                                    </div>
                                    <?php endif; ?>

                                    <?php $aindex++; endforeach; ?>
                                <?php endif; ?>
                        </div>

                        <div class="bullet-wrap">
                            <?php
                                $aindex = 0;
                                if ( ! empty( $slides ) ): 
                                    foreach( $slides as $slide ): 
                                        $extra_class = '';
                                        if ( $aindex == 2 )
                                            $extra_class = 'active';
                            ?>
                                <div class="slide-bullet <?php echo esc_attr( $extra_class ) ?>" data-id="<?php echo esc_attr( $aindex ) ?>">
                                </div>

                                <?php $aindex++; endforeach; ?>
                            <?php endif; ?>
                        </div>

                        <div class="project-counter">
                            <span class="text"><?php echo esc_html( $settings['counter_text'] ) ?></span>
                            <span class="counter">3</span>
                            <span class="total"> / <?php echo count( $slides ) ?></span>
                        </div>

                        <a href="<?php echo esc_url( $settings['button_link']['url'] ) ?>" class="view-all-btn"><?php echo esc_html( $settings['button_text'] ) ?></a>

                        <?php if ( $settings['list'] ) : ?>
                            <div class="social-wrap">
                                <div class="social-label"><?php echo esc_html__( 'Follow us', 'haru-frames' ); ?></div>
                                <ul class="social-list">
                                    <?php 
                                        foreach (  $settings['list'] as $item ) :
                                        $target = $item['list_content']['is_external'] ? ' target="_blank"' : '';
                                        $nofollow = $item['list_content']['nofollow'] ? ' rel="nofollow"' : '';
                                    ?>

                                    <li>
                                        <a href="<?php echo $item['list_content']['url']; ?>" <?php echo $target . $nofollow; ?>>
                                            <div class="social-list__icon"><?php Icons_Manager::render_icon( $item['list_icon'], [ 'aria-hidden' => 'true' ] ); ?></div>
                                            <div class="social-list__title"><?php echo $item['list_title']; ?></div>
                                        </a>
                                    </li>
                                        
                                    <?php endforeach; ?>
                                </ul>
                            </div>
                        <?php endif; ?>
                    </div>
                </div>

            <?php
        }

    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit