Submit
Path:
~
/
home
/
getwphos
/
www
/
kingpanel
/
wp-content
/
plugins
/
bdthemes-prime-slider-lite
/
modules
/
general
/
skins
/
File Content:
skin-slide.php
<?php namespace PrimeSlider\Modules\General\Skins; use Elementor\Skin_Base as Elementor_Skin_Base; use PrimeSlider\Utils; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Skin_Slide extends Elementor_Skin_Base { public function get_id() { return 'slide'; } public function get_title() { return esc_html__( 'Slide', 'bdthemes-prime-slider' ); } public function render_navigation_arrows() { $settings = $this->parent->get_settings_for_display(); ?> <?php if ($settings['show_navigation_arrows']) : ?> <div class="bdt-navigation-arrows reveal-muted"> <a class="bdt-prime-slider-previous" href="#" bdt-slidenav-previous bdt-slideshow-item="previous"></a> <a class="bdt-prime-slider-next" href="#" bdt-slidenav-next bdt-slideshow-item="next"></a> </div> <?php endif; ?> <?php } // To Do public function render_header($skin_name = 'slide') { $settings = $this->parent->get_settings_for_display(); $this->parent->add_render_attribute('prime-slider', 'class', 'bdt-prime-slider-skin-' . $skin_name); /** * Reveal Effects */ $this->parent->reveal_effects_attr('slideshow'); //Viewport Height $ratio = (!empty($settings['slider_size_ratio']['width']) && !empty($settings['slider_size_ratio']['height'])) ? $settings['slider_size_ratio']['width'] . ":" . $settings['slider_size_ratio']['height'] : '16:9'; // if (isset($settings["viewport_height"]["size"]) && 'vh' == $settings['viewport_height']['unit']) { // $ratio = false; // } if ( $settings['enable_height'] && !empty( $settings["viewport_height"]["size"] ) ) { $ratio = false; } $this->parent->add_render_attribute('slideshow-items', 'class', 'bdt-slideshow-items'); // if (isset($settings["viewport_height"]["size"]) && $ratio == false) { // $this->parent->add_render_attribute( // [ // 'slideshow-items' => [ // 'style' => 'min-height:' . $settings["viewport_height"]["size"] . 'vh' // ] // ] // ); // } $this->parent->add_render_attribute( [ 'slideshow' => [ 'bdt-slideshow' => [ wp_json_encode([ "animation" => 'fade', "ratio" => $ratio, 'min-height' => (!empty($settings['slider_min_height']['size']) && $ratio !== false) ? $settings['slider_min_height']['size'] : ($ratio !== false ? 480 : false), "autoplay" => ($settings["autoplay"]) ? true : false, "autoplay-interval" => $settings["autoplay_interval"], "pause-on-hover" => ("yes" === $settings["pause_on_hover"]) ? true : false, "velocity" => ($settings["velocity"]["size"]) ? $settings["velocity"]["size"] : 1, "finite" => ($settings["finite"]) ? false : true, ]) ] ] ] ); $this->parent->adv_anim('slideshow'); $this->parent->add_render_attribute('slideshow', 'id', 'bdt-' . $this->parent->get_id()); ?> <div class="bdt-prime-slider"> <div <?php $this->parent->print_render_attribute_string('prime-slider'); ?>> <div class="bdt-position-relative bdt-visible-toggle" <?php $this->parent->print_render_attribute_string('slideshow'); ?>> <ul class="bdt-slideshow-items"> <?php } public function render_navigation_dots() { $settings = $this->parent->get_settings_for_display(); ?> <?php if ($settings['show_navigation_dots']) : ?> <ul class="bdt-dotnav bdt-dotnav-vertical bdt-margin-bottom-100 bdt-margin-left-100 bdt-position-bottom-left bdt-text-center reveal-muted"> <?php $slide_index = 1; foreach ( $settings['slides'] as $slide ) : ?> <li bdt-slideshow-item="<?php echo esc_attr($slide_index - 1); ?>" data-label="<?php echo esc_attr(str_pad( $slide_index, 2, '0', STR_PAD_LEFT)); ?>" ><a href="#"></a></li> <?php $slide_index++; endforeach; ?> </ul> <?php endif; ?> <?php } public function render_footer() { ?> </ul> <?php $this->render_navigation_arrows(); ?> <?php $this->render_navigation_dots(); ?> </div> </div> </div> <?php } public function rendar_item_content($slide_content) { $settings = $this->parent->get_settings_for_display(); $this->parent->add_render_attribute('title-link', 'class', 'bdt-slider-title-link', true); if ($slide_content['title']) { $this->parent->add_link_attributes('title-link', $slide_content['title_link'], true); } $parallax_title = 'data-bdt-slideshow-parallax="x: 50,0,-10; opacity: 1,1,0"'; $parallax_sub_title = 'data-bdt-slideshow-parallax="x: 100,0,-20; opacity: 1,1,0"'; $parallax_excerpt = 'data-bdt-slideshow-parallax="y: 50,0,-10; opacity: 1,1,0"'; if ( true === _is_ps_pro_activated() ) { if($settings['animation_status'] == 'yes' && !empty($settings['animation_of'])){ if( in_array( ".bdt-ps-sub-title" ,$settings['animation_of'] ) ) { $parallax_sub_title =''; } if( in_array( ".bdt-title-tag" ,$settings['animation_of'] ) ) { $parallax_title =''; } if( in_array( ".bdt-slider-excerpt" ,$settings['animation_of'] ) ) { $parallax_excerpt =''; } } } ?> <div class="bdt-slide-shape" data-bdt-slideshow-parallax="Y: -100,0,100; opacity: 1,1,0"></div> <div class="bdt-prime-slider-wrapper"> <div class="bdt-prime-slider-content"> <div class="bdt-prime-slider-desc"> <?php if ($slide_content['title'] && ( 'yes' == $settings['show_title'] )) : ?> <div class="bdt-main-title" <?php echo wp_kses_post($parallax_title); ?> data-reveal="reveal-active"> <<?php echo esc_attr(Utils::get_valid_html_tag($settings['title_html_tag'])); ?> class="bdt-title-tag"> <?php if ( '' !== $slide_content['title_link']['url'] ) : ?> <a <?php $this->parent->print_render_attribute_string( 'title-link' ); ?>> <?php endif; ?> <?php echo wp_kses_post($slide_content['title']); ?> <?php if ( '' !== $slide_content['title_link']['url'] ) : ?> </a> <?php endif; ?> </<?php echo esc_attr(Utils::get_valid_html_tag($settings['title_html_tag'])); ?>> </div> <?php endif; ?> <?php if ($slide_content['sub_title'] && ( 'yes' == $settings['show_sub_title'] )) : ?> <div class="bdt-sub-title"> <<?php echo esc_attr(Utils::get_valid_html_tag($settings['sub_title_html_tag'])); ?> <?php echo wp_kses_post($parallax_sub_title); ?> data-reveal="reveal-active" class="bdt-ps-sub-title"> <?php echo wp_kses_post($slide_content['sub_title']); ?> </<?php echo esc_attr(Utils::get_valid_html_tag($settings['sub_title_html_tag'])); ?>> </div> <?php endif; ?> <?php if ( $settings['show_button_text'] == 'yes' or 'yes' == $settings['show_excerpt'] ) : ?> <div class="bdt-slide-text-mobile"> <?php if ($slide_content['excerpt'] && ( 'yes' == $settings['show_excerpt'] )) : ?> <div class="bdt-slider-excerpt" <?php echo wp_kses_post($parallax_sub_title); ?> data-reveal="reveal-active"> <?php echo wp_kses_post($slide_content['excerpt']); ?> </div> <?php endif; ?> <?php if ( $settings['show_button_text'] == 'yes' ) : ?> <div class="bdt-prime-slider-arrow-button" data-bdt-slideshow-parallax="x: 100,0,-50; opacity: 1,1,0"> <?php $this->parent->render_button($slide_content); ?> </div> <?php endif; ?> </div> <?php endif; ?> </div> </div> </div> <?php if ( $settings['show_button_text'] == 'yes' or 'yes' == $settings['show_excerpt'] ) : ?> <div class="bdt-slide-featured bdt-flex"> <?php if ($slide_content['excerpt'] && ( 'yes' == $settings['show_excerpt'] )) : ?> <div class="bdt-slider-excerpt" <?php echo wp_kses_post($parallax_excerpt); ?> data-reveal="reveal-active"> <?php echo wp_kses_post($slide_content['excerpt']); ?> </div> <?php endif; ?> <div class="bdt-prime-slider-arrow-button bdt-flex" data-bdt-slideshow-parallax="x: 100,0,-50; opacity: 1,1,0"> <?php $this->parent->render_button($slide_content); ?> </div> </div> <?php endif; ?> <?php } public function render_slides_loop() { $settings = $this->parent->get_settings_for_display(); $kenburns_reverse = $settings['kenburns_reverse'] ? ' bdt-animation-reverse' : ''; foreach ( $settings['slides'] as $slide ) : ?> <li class="bdt-slideshow-item bdt-flex bdt-flex-middle bdt-flex-center elementor-repeater-item-<?php echo esc_attr($slide['_id']); ?>"> <?php if( 'yes' == $settings['kenburns_animation'] ) : ?> <div class="bdt-position-cover bdt-animation-kenburns<?php echo esc_attr( $kenburns_reverse ); ?> bdt-transform-origin-center-left"> <?php endif; ?> <?php if (( $slide['background'] == 'image' ) && $slide['image']) : ?> <?php $this->parent->rendar_item_image($slide, $slide['title']); ?> <?php elseif (( $slide['background'] == 'video' ) && $slide['video_link']) : ?> <?php $this->parent->rendar_item_video($slide); ?> <?php elseif (( $slide['background'] == 'youtube' ) && $slide['youtube_link']) : ?> <?php $this->parent->rendar_item_youtube($slide); ?> <?php endif; ?> <?php if( 'yes' == $settings['kenburns_animation'] ) : ?> </div> <?php endif; ?> <?php if( 'none' !== $settings['overlay'] ) : $blend_type = ( 'blend' == $settings['overlay']) ? ' bdt-blend-'.$settings['blend_type'] : ''; ?> <div class="bdt-overlay-default bdt-position-cover<?php echo esc_attr($blend_type); ?>"></div> <?php endif; ?> <?php $this->rendar_item_content( $slide ); ?> </li> <?php endforeach; } public function render() { $this->render_header(); $this->render_slides_loop(); $this->render_footer(); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
skin-crelly.php
8773 bytes
0644
skin-meteor.php
10352 bytes
0644
skin-slide.php
11804 bytes
0644
N4ST4R_ID | Naxtarrr