https://t.me/AnonymousX5
Server : Apache/2
System : Linux vps.sdns.vn 3.10.0-1160.15.2.el7.x86_64 #1 SMP Wed Feb 3 15:06:38 UTC 2021 x86_64
User : phatdatpq ( 1022)
PHP Version : 7.2.34
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Directory :  /home/phatdatpq/public_html/wp-content/plugins/temner-slider/shortcodes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/phatdatpq/public_html/wp-content/plugins/temner-slider/shortcodes/temner_slider.php
<?php


function temner_image($atts, $content = null)
{
	extract(shortcode_atts(array(
		'_id'             => 'image_' . rand(),
		'id'              => '',
		'org_img'         => '',
		'caption'         => '',
		'animate'         => '',
		'animate_delay'   => '',
		'lightbox'        => '',
		'height'          => '',
		'text'          => '',
		'image_overlay'   => '',
		'image_hover'     => '',
		'image_hover_alt' => '',
		'image_size'      => 'large',
		'icon'            => '',
		'width'           => '',
		'margin'          => '',
		'position_x'      => '',
		'position_x__sm'  => '',
		'position_x__md'  => '',
		'position_y'      => '',
		'position_y__sm'  => '',
		'position_y__md'  => '',
		'depth'           => '',
		'parallax'        => '',
		'depth_hover'     => '',
		'link'            => '',
		'target'          => '_self',
	), $atts));

	ob_start();
	if (empty($id)) {
		return '<div class="uxb-no-content uxb-image">Upload Image...</div>';
	}

	// Ensure key existence when builder setting is
	// not touched, to extract responsive widths.
	if (!array_key_exists('width', $atts)) {
		$atts['width'] = '100';
	}

	$classes       = array();
	$classes_inner = array('img-inner');
	$classes_img   = array();
	$image_meta    = wp_prepare_attachment_for_js($id);
	$link_atts     = array('target' => $target);

	if (is_numeric($id)) {
		if (!$org_img) {
			$org_img = wp_get_attachment_image_src($id, 'large');
			$org_img = $org_img[0];
		}
		if ($caption && $caption == 'true') {
			$caption = $image_meta['caption'];
		}
	} else {
		if (!$org_img) {
			$org_img = $id;
		}
	}

	// If caption is enabled.
	$link_start = '';
	$link_end   = '';
	$link_class = '';

	if ($link) {
		if (strpos($link, 'watch?v=') !== false) {
			$icon       = 'icon-play';
			$link_class = 'open-video';
			if (!$image_overlay) {
				$image_overlay = 'rgba(0,0,0,.2)';
			}
		}
		$link_start = '<a class="' . $link_class . '" href="' . $link . '"' . flatsome_parse_target_rel($link_atts) . '>';
		$link_end   = '</a>';
	} elseif ($lightbox) {
		$link_start = '<a class="image-lightbox lightbox-gallery" href="' . $org_img . '" title="' . $caption . '">';
		$link_end   = '</a>';
	}

	// Set positions
	if (function_exists('ux_builder_is_active') && ux_builder_is_active()) {
		// Do not add positions if builder is active.
		// They will be set by the onChange handler.
	} else {
		$classes[] = flatsome_position_classes('x', $position_x, $position_x__sm, $position_x__md);
		$classes[] = flatsome_position_classes('y', $position_y, $position_y__sm, $position_y__md);
	}

	if ($image_hover) {
		$classes_inner[] = 'image-' . $image_hover;
	}
	if ($image_hover_alt) {
		$classes_inner[] = 'image-' . $image_hover_alt;
	}
	if ($height) {
		$classes_inner[] = 'image-cover';
	}
	if ($depth) {
		$classes_inner[] = 'box-shadow-' . $depth;
	}
	if ($depth_hover) {
		$classes_inner[] = 'box-shadow-' . $depth_hover . '-hover';
	}

	// Add Parallax Attribute.
	if ($parallax) {
		$parallax = 'data-parallax-fade="true" data-parallax="' . $parallax . '"';
	}

	// Set image height.
	$css_image_height = array(
		array('attribute' => 'padding-top', 'value' => $height),
		array('attribute' => 'margin', 'value' => $margin),
	);

	$classes       = implode(" ", $classes);
	$classes_inner = implode(" ", $classes_inner);
	$classes_img   = implode(" ", $classes_img);

?>
	<div class="img has-hover <?php echo $classes; ?>" id="<?php echo $_id; ?>">
		<?php echo $link_start; ?>
		<?php if ($parallax) echo '<div ' . $parallax . '>'; ?>
		<?php if ($animate) echo '<div data-animate="' . $animate . '">'; ?>
		<div class="<?php echo $classes_inner; ?> dark" <?php echo get_shortcode_inline_css($css_image_height); ?>>
			<?php echo flatsome_get_image($id, $image_size, $caption); ?>
			<?php if ($image_overlay) { ?>
				<div class="overlay" style="background-color: <?php echo $image_overlay; ?>"></div>
			<?php } ?>
			<?php if ($icon) { ?>
				<div class="absolute no-click x50 y50 md-x50 md-y50 lg-x50 lg-y50 text-shadow-2">
					<div class="overlay-icon">
						<i class="icon-play"></i>
					</div>
				</div>
			<?php } ?>

		</div>
		<div class="hidden TextCaption">
			<?php echo $text; ?>
		</div>
		<?php if ($animate) echo '</div>'; ?>
		<?php if ($parallax) echo '</div>'; ?>
		<?php echo $link_end; ?>
		<?php
		$args = array(
			'width' => array(
				'selector' => '',
				'property' => 'width',
				'unit'     => '%',
			),
		);
		echo ux_builder_element_style_tag($_id, $args, $atts);
		?>
	</div>

<?php
	$content = ob_get_contents();
	ob_end_clean();

	return $content;
}

add_shortcode('temner_image', 'temner_image');



function temner_shortcode_ux_slider($atts, $content = null)
{

	extract(shortcode_atts(array(
		'_id' => 'temnerslider-' . rand(),
		'timer' => '6000',
		'bullets' => 'true',
		'visibility' => '',
		'type' => 'slide',
		'thumbnail' => false,
		'bullet_style' => '',
		'auto_slide' => 'true',
		'auto_height' => 'true',
		'bg_color' => '#fff',
		'text_color' => '#333',
		'caption_height' => '45px',
		'slide_align' => 'center',
		'style' => 'normal',
		'slide_width' => '',
		'arrows' => 'true',
		'pause_hover' => 'true',
		'hide_nav' => '',
		'nav_style' => 'circle',
		'nav_color' => 'light',
		'nav_size' => 'large',
		'nav_pos' => '',
		'infinitive' => 'true',
		'freescroll' => 'false',
		'parallax' => '0',
		'margin' => '',
		'columns' => '1',
		'height' => '',
		'rtl' => 'false',
		'draggable' => 'true',
		'friction' => '0.6',
		'selectedattraction' => '0.1',
		'threshold' => '5',

		// Derpicated
		'mobile' => 'true',

	), $atts));

	// Stop if visibility is hidden
	if ($visibility == 'hidden') return;

	ob_start();

	$classes = array('slider');

	if ($type == 'fade') $classes[] = 'slider-type-' . $type;

	// Hide if mobile is set to false
	if ($mobile !==  'true' && !$visibility) {
		$visibility = 'hide-for-small';
	}

	// Bullet style
	if ($bullet_style) $classes[] = 'slider-nav-dots-' . $bullet_style;

	// Nav style
	if ($nav_style) $classes[] = 'slider-nav-' . $nav_style;

	// Nav size
	if ($nav_size) $classes[] = 'slider-nav-' . $nav_size;

	// Nav Color
	if ($nav_color) $classes[] = 'slider-nav-' . $nav_color;

	// Nav Position
	if ($nav_pos) $classes[] = 'slider-nav-' . $nav_pos;

	// Add timer
	if ($auto_slide == 'true') $auto_slide = $timer;

	// Add Slider style
	if ($style) $classes[] = 'slider-style-' . $style;

	// Always show Nav if set
	if ($hide_nav ==  'true') {
		$classes[] = 'slider-show-nav';
	}

	// Slider Nav visebility
	$is_arrows = 'true';
	$is_bullets = 'true';

	if ($arrows == 'false') $is_arrows = 'false';
	if ($bullets == 'false') $is_bullets = 'false';

	if (is_rtl()) $rtl = 'true';

	$classes = implode(" ", $classes);

	// Inline CSS
	$css_args = array(
		'bg_color' => array(
			'attribute' => 'background-color',
			'value' => $bg_color,
		),
		'margin' => array(
			'attribute' => 'margin-bottom',
			'value' => $margin,
		)
	);
?>

	<div class="temner-slider slider-wrapper relative <?php echo $visibility; ?>" id="<?php echo $_id; ?>" <?php echo get_shortcode_inline_css($css_args); ?>>
		<div class="temner-main <?php echo $classes; ?>" data-flickity-options='{
            "cellAlign": "<?php echo $slide_align; ?>",
            "imagesLoaded": true,
            "lazyLoad": 1,
            "freeScroll": <?php echo $freescroll; ?>,
            "wrapAround": <?php echo $infinitive; ?>,
            "autoPlay": <?php echo $auto_slide; ?>,
            "pauseAutoPlayOnHover" : <?php echo $pause_hover; ?>,
            "prevNextButtons": <?php echo $is_arrows; ?>,
            "contain" : true,
            "adaptiveHeight" : <?php echo $auto_height; ?>,
            "dragThreshold" : <?php echo $threshold; ?>,
            "percentPosition": true,
            "pageDots": <?php echo $is_bullets; ?>,
            "rightToLeft": <?php echo $rtl; ?>,
            "draggable": <?php echo $draggable; ?>,
            "selectedAttraction": <?php echo $selectedattraction; ?>,
            "parallax" : <?php echo $parallax; ?>,
            "friction": <?php echo $friction; ?>
        }'>
			<?php echo flatsome_contentfix($content); ?>
		</div>
		<div class="carousel carousel-nav TextCaptions" data-flickity='{ "asNavFor": ".temner-main ", "contain": true, "pageDots": false }' data-height="<?php echo $caption_height; ?>"></div>
	</div>

	<style media="screen">
		.TextCaptions .flickity-slider {
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.temner-slider .is-selected.is-nav-selected {
			font-weight: bold;
			border-top: 4px solid #4a90e2;
		}

		.TextCaptions {
			padding: 0 15px;
			background: #fff;
		}

		.TextCaptions .item {
			margin: 0 !important;
			padding: 0 !important;
			height: <?php echo $caption_height; ?>;
			line-height: 1.3;
			justify-content: center;
			align-items: center;
			display: flex;
			text-align: center;
			text-transform: capitalize;
			color: <?php echo $text_color; ?>;
			font-size: 12px;
			cursor: pointer;
			border-top: 4px solid transparent;
		}
		.TextCaptions .item:after{
			content: '';
			float: right;
			height: 30px;
			border-right: 1px solid #e5e5e5;
			position: absolute;
			top: 13px;
			right: 0;
		}
	</style>
	<!-- .ux-slider-wrapper -->

<?php

	$content = ob_get_contents();
	ob_end_clean();
	return $content;
}
add_shortcode("temner_slider", "temner_shortcode_ux_slider");

add_action('wp_footer', 'temner_slider_scripts');
function temner_slider_scripts()
{
?>
	<script type="text/javascript">
		jQuery(document).ready(function() {
			var html = '';
			jQuery('.temner-slider .TextCaption').each(function() {
				var currentElement = jQuery(this);
				html += '<div class="col large-3 medium-4 small-6 item">' + currentElement.html() + '</div>';
			});
			jQuery('.temner-slider .TextCaptions').html(html);
		});
	</script>

<?php
}

https://t.me/AnonymousX5 - 2025