PATH:
home
/
fengshp
/
www
/
wp-content
/
themes
/
themify-ultra
/
themify
/
themify-builder
/
templates
<?php /** * Slider module template * * This template can be overridden by copying it to your child_theme_folder/themify-builder/template-slider.php. * * Access original fields: $args['settings'] * @author Themify */ defined( 'ABSPATH' ) || exit; $mod_name=$args['mod_name']; $element_id = $args['module_ID']; $fields_args = $args['mod_settings']+ array( 'layout_display_slider' => 'blog', 'open_link_new_tab_slider' => 'no', 'hide_post_date' => 'yes', 'mod_title_slider' => '', 'layout_slider' => '', 'img_h_slider' => '', 'img_w_slider' => '', 'img_fullwidth_slider' => '', 'image_size_slider' => '', 'visible_opt_slider' => '', 'tab_visible_opt_slider' => '', 'mob_visible_opt_slider' => '', 'auto_scroll_opt_slider' => 'off', 'scroll_opt_slider' => '', 'speed_opt_slider' => '1', 'effect_slider' => 'scroll', 'pause_on_hover_slider' => 'resume', 'play_pause_control' => 'no', 'wrap_slider' => 'yes', 'show_nav_slider' => 'yes', 'show_arrow_slider' => 'yes', 'show_arrow_buttons_vertical' => '', 'unlink_feat_img_slider'=>'no', 'unlink_post_title_slider'=>'no', 'left_margin_slider' => '', 'right_margin_slider' => '', 'css_slider' => '', 'animation_effect' => '', 'touch_swipe' => '', 'height_slider' => 'variable', 'items_per_slide' => 1, ); $fields_args['items_per_slide'] = max( 1, (int) $fields_args['items_per_slide'] ); $template_name = $fields_args['layout_display_slider']; if($template_name!=='image' && $template_name!=='video' && $template_name!=='text' && $template_name!=='content'){ $template_name = 'blog'; } $arrow_vertical = $fields_args['show_arrow_slider'] === 'yes' && $fields_args['show_arrow_buttons_vertical'] === 'vertical' ? 'themify_builder_slider_vertical' : ''; $fullwidth_image = $fields_args['img_fullwidth_slider'] === 'fullwidth' ? 'slide-image-fullwidth' : ''; $container_class =apply_filters('themify_builder_module_classes', array( 'module themify_builder_slider_wrap tf_clearfix', 'module-' . $mod_name, $element_id, $fields_args['css_slider'], $fields_args['layout_slider'], $arrow_vertical, $fullwidth_image ), $mod_name, $element_id, $fields_args); if(!empty($fields_args['global_styles']) && Themify_Builder::$frontedit_active===false){ $container_class[] = $fields_args['global_styles']; } $container_props = apply_filters('themify_builder_module_container_props', self::parse_animation_effect($fields_args,array( 'class' => implode(' ', $container_class), )), $fields_args, $mod_name, $element_id); $margins = ''; if ($fields_args['left_margin_slider'] !== '') { $margins.='margin-left:' . $fields_args['left_margin_slider'] . 'px;'; } if ($fields_args['right_margin_slider'] !== '') { $margins.='margin-right:' . $fields_args['right_margin_slider'] . 'px;'; } $fields_args['margin'] = $margins; if(Themify_Builder::$frontedit_active===false){ $container_props['data-lazy']=1; } ?> <div <?php echo themify_get_element_attributes($container_props); ?>> <?php $container_props=$container_class=$args=null; echo Themify_Builder_Component_Module::get_module_title($fields_args,'mod_title_slider'); ?> <div class="themify_builder_slider tf_carousel tf_swiper-container tf_rel tf_overflow"<?php if(Themify_Builder::$frontedit_active===false):?> data-lazy="1"<?php endif;?> data-visible="<?php echo $fields_args['visible_opt_slider'] ?>" data-tab-visible="<?php echo $fields_args['tab_visible_opt_slider'] ?>" data-mob-visible="<?php echo $fields_args['mob_visible_opt_slider'] ?>" data-scroll="<?php echo $fields_args['scroll_opt_slider']; ?>" <?php if($arrow_vertical!==''):?> data-nav_out="1" <?php endif;?> <?php if($fields_args['auto_scroll_opt_slider']!=='off'):?> data-auto="<?php echo $fields_args['auto_scroll_opt_slider']*1000 ?>" data-controller="<?php echo $fields_args['play_pause_control']=== 'yes'?'1':'0' ?>" data-pause_hover="<?php echo $fields_args['pause_on_hover_slider']=== 'resume'?'1':'0' ?>" <?php endif;?> data-speed="<?php echo $fields_args['speed_opt_slider'] ?>" data-wrapvar="<?php echo $fields_args['wrap_slider']!== 'no'?'1':'0' ?>" data-slider_nav="<?php echo $fields_args['show_arrow_slider']=== 'yes'?'1':'0' ?>" data-pager="<?php echo $fields_args['show_nav_slider']=== 'yes'?'1':'0' ?>" data-effect="<?php echo $fields_args['effect_slider'] ?>" data-height="<?php echo $fields_args['height_slider'] ?>" data-css_url="<?php echo THEMIFY_BUILDER_CSS_MODULES ?>sliders/carousel,<?php echo THEMIFY_BUILDER_CSS_MODULES ?>sliders/<?php echo $mod_name?>" <?php if ( $fields_args['effect_slider'] === 'continuously' && ! empty( $fields_args['continuous_dir'] ) ) : ?> data-auto-reverse="true" <?php endif; ?> <?php if ( $fields_args['touch_swipe'] !== '' ) : ?>data-touch_swipe="<?php echo $fields_args['touch_swipe']; ?>" <?php endif; ?> <?php if ($template_name === 'video'): ?>data-type="video"<?php endif; ?>> <div class="tf_swiper-wrapper tf_lazy tf_rel tf_w tf_h tf_textc"> <?php self::retrieve_template('template-' . $mod_name . '-' . $template_name . '.php', array( 'module_ID' => $element_id, 'mod_name' => $mod_name, 'settings' => $fields_args ), __DIR__); ?> </div> </div> </div>
[+]
..
[-] template-accordion.php
[edit]
[-] template-login.php
[edit]
[-] template-builder-editor.php
[edit]
[-] template-copyright.php
[edit]
[-] template-testimonial-grid.php
[edit]
[-] template-callout.php
[edit]
[-] template-gallery-lightboxed.php
[edit]
[-] template-plain-text.php
[edit]
[-] template-map.php
[edit]
[-] template-buttons.php
[edit]
[-] template-alert.php
[edit]
[-] template-service-menu.php
[edit]
[-] template-layout-part.php
[edit]
[-] template-gallery-grid.php
[edit]
[-] template-tab.php
[edit]
[-] template-social-share.php
[edit]
[-] post_in_lightbox.php
[edit]
[-] template-widget.php
[edit]
[-] template-testimonial-slider.php
[edit]
[-] template-slider-blog.php
[edit]
[-] template-icon.php
[edit]
[-] template-blog.php
[edit]
[-] template-box.php
[edit]
[-] builder-output.php
[edit]
[-] template-menu.php
[edit]
[-] template-divider.php
[edit]
[-] template-gallery-showcase.php
[edit]
[-] template-page-break.php
[edit]
[-] builder-layout-part-output.php
[edit]
[-] template-feature.php
[edit]
[-] template-signup-form.php
[edit]
[-] template-gallery.php
[edit]
[-] template-video.php
[edit]
[-] template-lottie.php
[edit]
[-] template-slider-image.php
[edit]
[-] template-text.php
[edit]
[-] template-slider-text.php
[edit]
[-] template-link-block.php
[edit]
[-] template-testimonial-slider-content.php
[edit]
[-] template-toc.php
[edit]
[-] template-image.php
[edit]
[-] template-fancy-heading.php
[edit]
[-] template-slider-video.php
[edit]
[-] template-overlay-content.php
[edit]
[-] template-optin.php
[edit]
[-] template-widgetized.php
[edit]
[-] template-code.php
[edit]
[-] template-gallery-slider.php
[edit]
[-] template-slider.php
[edit]
[-] template-star.php
[edit]